/* ----------------------------------------------------------------------------------------
* Author        : AuraTheme
* Theme Name    : PestAnnihhilate - Bugs & Pest Control Wordpress Theme
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */

/* ===================== */
/*   General css */
/* ===================== */

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	background-color: var(--white-color);
	color: var(--text-color);
}


::selection{
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--heading-font);
	font-weight: var(--heading-font-weight);
	line-height: 1.2em;
	color: var(--primary-color);
    margin : 0;
    
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

/* WordPress Core Caption Styles */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875em;
    font-style: italic;
    margin-top: 0.5em;
    color: #666;
}

/* Gallery Caption */
.gallery-caption {
    display: block;
    font-size: 0.75em;
    line-height: 1.4;
    padding: 0.5em 0;
    text-align: center;
}

/* Comment Author Highlight */
.bypostauthor {
    border-left: 3px solid var(--accent-color);
    padding-left: 1em;
    background-color: rgba(206, 6, 6, 0.05);
}

/* Text meant only for screen readers */


.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Screen reader text that becomes visible on focus */
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #f1f1f1;
    color: #21759b;
    padding: 8px;
    z-index: 100000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

.header-btn{
	display: flex;
	align-items: center;
	gap: 15px;
}

.btn-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    padding: 18px 34px;
    border-radius: 100px;
    background: var(--accent-color);
    color: var(--white-color);
    overflow: hidden;
    transition: color 0.4s ease, transform 0.3s ease;
    z-index: 1;
}

/* Sliding layer */
.btn-default::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    z-index: -1;
}

/* Highlighted Button (Dark Background Use) */
.btn-default.btn-highlighted {
    background: var(--accent-color);
    color: var(--white-color);
}

/* Override sliding layer */
.btn-default.btn-highlighted::before {
    background: var(--white-color);
}

/* Hover state */
.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

/* Hover animation */
.btn-default:hover::before {
    transform: translateX(0);
}

.btn-default:hover {
    transform: translateY(-2px);
}

/* Arrow animation */
.btn-default .btn-arrow {
    display: inline-block;
    transition: transform 0.35s ease;
}

.btn-default:hover .btn-arrow {
    transform: translateX(6px);
}

/* Active (click feedback) */
.btn-default:active {
    transform: translateY(0);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--accent-color);
	text-transform: capitalize;
	padding-right: 36px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	width: 26px;
	height: 26px;
	background-color: var(--accent-color);
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	border-radius: 50%;
	transform: translateX(-3px);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	color: var(--primary-color);
	background-color: var(--primary-color);
	transform: translateX(0px);
}

.cb-cursor:before{
	background: var(--accent-color);
}
.reveal-preloader{
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Center */
.reveal-inner{
	text-align: center;
}

.reveal-inner img{
	width: 70px;
	display: block;
	margin: 0 auto 20px;
	opacity: 0;
	animation: logo-fade-in 0.8s ease forwards;
}

/* Loading Line */
.reveal-line{
	display: block;
	width: 0;
	height: 3px;
	background: var(--primary-color);
	margin: auto;
	animation: load-line 1.4s ease forwards;
}

/* Exit animation */
.reveal-preloader.exit{
	animation: curtain-out 0.9s ease forwards;
}

/* Animations */
@keyframes logo-fade-in{
	to{
		opacity: 1;
	}
}

@keyframes load-line{
	to{
		width: 120px;
	}
}

@keyframes curtain-out{
	to{
		transform: translateY(-100%);
		opacity: 0;
	}
}

/* Hide preloader on mobile if option is off */
@media (max-width: 768px) {
	.reveal-preloader.hide-on-mobile {
		display: none !important;
	}
}

/* Simple toggle switch in Customizer */
.wp-customizer .customize-control-checkbox input[type="checkbox"] {
	display: none;
}

.wp-customizer .customize-control-checkbox label {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
	background: #ccc;
	border-radius: 50px;
	cursor: pointer;
}

.wp-customizer .customize-control-checkbox label::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	transition: 0.3s;
}

.wp-customizer .customize-control-checkbox input:checked + label::after {
	transform: translateX(26px);
	background: var(--primary-color);
}


/* ===================== */
/*    Back To Top Button */
/* ===================== */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 46px;
    height: 46px;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-color);
}

/* Visible State */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===================== */
/*   Animations System  */
/* ===================== */

/* Base hidden state */
[data-animate] {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: opacity, transform;
}

/* Visible state */
[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
}

/* ========== Variations ========== */

/* Fade Up (default) */
[data-animate="fade-up"] {
    transform: translateY(24px);
}

/* Fade Up In (Smooth) */
[data-animate="fade-up-in"] {
    transform: translateY(40px);
    opacity: 0;
}

[data-animate="fade-up-in"].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Fade Down */
[data-animate="fade-down"] {
    transform: translateY(-24px);
}

/* Fade Right */
[data-animate="fade-right"] {
    transform: translateX(-24px);
}

/* Fade Left */
[data-animate="fade-left"] {
    transform: translateX(24px);
}

/* Fade Only */
[data-animate="fade"] {
    transform: none;
}

/* Fade + Scale */
[data-animate="fade-scale"] {
    transform: scale(0.95);
}

/* Fade + Rotate */
[data-animate="fade-rotate"] {
    transform: rotate(-3deg) translateY(20px);
}

/* ========== Speed Controls ========== */

[data-animate][data-speed="slow"] {
    transition-duration: 0.9s;
}

[data-animate][data-speed="fast"] {
    transition-duration: 0.4s;
}
     
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Mobile Optimization ========== */
@media (max-width: 768px) {
    [data-animate] {
        transform: none !important;
    }
}


/* ===================== */
/*   FAQs css  */
/* ===================== */
.faq-section{
	padding: 100px 0;
}

.faq-section-image{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-right: 20px;
}

.faqs-main-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 47, 71, 0.2);
}

.faqs-main-img figure {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.faqs-main-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.faqs-main-img:hover img {
    transform: scale(1.05);
}

.faqs-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(206, 6, 6, 0.3);
    z-index: 2;
}

.faqs-image-badge span:first-child {
    font-weight: bold;
    font-size: 16px;
}

.faqs-image-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 0 10px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h4 {
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
}

/* FAQ Accordion Styles */
.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    background: transparent;
    border: none;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--white-color);
    padding: 15px 40px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
}

.faq-accordion .accordion-header .accordion-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-accordion .accordion-button:not(.collapsed){
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
    margin-bottom: 10px;
}

.accordion-number {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
    min-width: 30px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    background: url('../images/arrow-white.svg') no-repeat;
    background-position: center;
    background-size: contain;
    height: 20px;
    width: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
    padding: 15px 15px 0 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 12px 12px;
    margin-top: -10px;
}

.accordion-item .accordion-body p{
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/* FAQ CTA Styles */
.faq-cta {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.faq-cta p {
    color: var(--white-color);
    margin: 0;
    font-size: 16px;
}

.faq-contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.faq-contact-link:hover {
    color: #ff3333;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faq-section-image {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .faqs-main-img img {
        height: 500px;
    }
    
    .faqs-image-stats {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faqs-main-img img {
        height: 350px;
    }
    
    .faqs-image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 35px 12px 12px;
    }
    
    .stat-item h4 {
        font-size: 20px;
    }
}

/* ===================== */
/*  Page Styles  */
/* ===================== */

.page-content {
    padding: var(--page-banner-top-gap, 120px) 0 var(--page-banner-bottom-gap, 100px);
    background-color: var(--secondary-color, #f4f7fa);
}
.page-content .container{
    max-width: var(--page-container-max-width, 1530px);
    padding: 0;
}

.page-content-wrapper {
    background: var(--page-content-bg, #ffffff);
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* Page Header */
.page-heading {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color, #ce0606);
    position: relative;
}

.page-heading.text-center {
    text-align: center;
}

.page-heading.text-right {
    text-align: right;
}

.page-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color, #ce0606);
}

.page-heading.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-heading.text-right::after {
    left: auto;
    right: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: var(--heading-font-weight, 700);
    color: var(--page-title-color, #002F47);
    margin: 0;
    line-height: 1.2;
    padding: 10px 0;
    margin-bottom: 10px;
}

/* Page Article */
.page-article {
    position: relative;
}

.page-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.page-featured-image:hover img {
    transform: scale(1.02);
}

.page-content-entry {
    color: var(--page-content-color, #3D5A6A);
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content-entry p {
    margin-bottom: 1.5em;
}

.page-content-entry h2,
.page-content-entry h3,
.page-content-entry h4 {
    color: var(--page-title-color, #002F47);
    font-weight: var(--heading-font-weight, 600);
}

.page-content-entry h2 {
    font-size: 1.75rem;
    padding-bottom: 10px;
}

.page-content-entry h3 {
    font-size: 1.5rem;
}

.page-content-entry h4 {
    font-size: 1.3rem;
}

.page-content-entry blockquote {
    border-left: 4px solid var(--accent-color, #ce0606);
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: var(--blog-meta-color, #6c757d);
    background: var(--secondary-color, #f4f7fa);
    padding: 20px;
    border-radius: 8px;
}

.page-content-entry blockquote p:last-child {
    margin-bottom: 0;
}

.page-content-entry pre {
    background: var(--secondary-color, #f4f7fa);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
    font-size: 0.9em;
}

.page-content-entry code {
    background: var(--secondary-color, #f4f7fa);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--accent-color, #ce0606);
}

.page-content-entry ul,
.page-content-entry ol {
    padding-left: 20px;
    margin: 1.5em 0;
}

.page-content-entry li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.page-content-entry ul li::marker {
    color: var(--accent-color, #ce0606);
}

.page-content-entry ol {
    counter-reset: list-counter;
}

.page-content-entry ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 30px;
}

.page-content-entry ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color, #ce0606);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.page-content-entry table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-content-entry table th,
.page-content-entry table td {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-content-entry table th {
    background: var(--primary-color, #002F47);
    color: white;
    font-weight: 600;
}

.page-content-entry table tr:nth-child(even) {
    background: var(--secondary-color, #f4f7fa);
}

.page-content-entry table tr:hover {
    background: rgba(var(--accent-color-rgb, 206, 6, 6), 0.05);
}

/* Page Links */
.page-links {
    margin: 30px 0;
    padding: 20px;
    background: var(--secondary-color, #f4f7fa);
    border-radius: 8px;
}

.page-links .page-links-title {
    font-weight: 600;
    color: var(--page-title-color, #002F47);
    margin-bottom: 10px;
    display: block;
}

.page-links .page-number {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 6px 12px;
    background: white;
    color: var(--primary-color, #002F47);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links .page-number:hover,
.page-links .page-number.current {
    background: var(--accent-color, #ce0606);
    color: white;
    border-color: var(--accent-color, #ce0606);
}

/* Page Footer */
.page-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.edit-link {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color, #ce0606);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.edit-link:hover {
    background: var(--primary-color, #002F47);
    transform: translateY(-2px);
}

/* Page Sidebar */
.page-sidebar {
    margin-top: 10px;
}

.page-sidebar .widget-area {
    background: var(--blog-sidebar-bg, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
}

/* Comments on Pages */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--accent-color, #ce0606);
}

/* Responsive Page Styles */
@media (max-width: 992px) {
    .page-content-wrapper {
        padding: 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-content-entry h2 {
        font-size: 1.75rem !important;
    }
    
    .page-content-entry h3 {
        font-size: 1.5rem !important;
    }
    
    .page-content-entry h4 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 768px) { 
    .page-content {
    padding: var(--page-banner-top-gap, 80px) 0 var(--page-banner-bottom-gap, 80px);
    }
    
    .page-content-wrapper {
        padding: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content-entry {
        font-size: 1rem;
    }
    
    .page-content-entry h2 {
        font-size: 1.5rem !important;
    }
    
    .page-content-entry h3 {
        font-size: 1.25rem !important;
    }
    
    .page-content-entry h4 {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 576px) {
    .page-content-wrapper {
        padding: 20px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-content-entry {
        font-size: 0.95rem;
    }
    
    .page-featured-image {
        margin-bottom: 20px;
    }
}

/* Page Layout Specific Styles */
.page-layout-full .page-content-wrapper {
    padding: 0px;
}

.page-layout-full .page-title {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .page-layout-full .page-content-wrapper {
        padding: 0px;
    }
    
    .page-layout-full .page-title {
        font-size: 2.25rem;
    }
}

/* ===================== */
/*  Service Single css  */
/* ===================== */

.page-service-single{
	padding: 100px 0;
}
/* General */
.service-view {
  background: #f8fafc;
}

/* Sidebar Sticky Wrapper */
.service-sidebar-sticky {
  position: sticky !important;
  top: 110px; 
}

/* Sidebar Card */
.service-nav-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 20px;
}

/* Title */
.nav-title {
  color: #fff;
  margin-bottom: 20px;
}

/* Links */
.service-nav-links li a {
  display: block;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-nav-links li.active a,
.service-nav-links li a:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Help Box */
.service-help-box {
  background: var(--accent-color);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}

.service-help-box a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Mobile Fix */
@media (max-width: 991px) {
  .service-sidebar-sticky {
    position: static;
    margin-top: 40px;
  }
}

/* Hero */
.service-hero img {
  border-radius: 24px;
}

/* Highlights */
.highlight-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.highlight-card h4 {
  margin-bottom: 10px;
}

/* Split */
.service-split img {
  border-radius: 20px;
}

.service-points {
  padding-left: 18px;
}

.service-points li {
  margin-bottom: 8px;
}

/* Features */
.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.feature-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

.page-single-faqs.page-faq-accordion .accordion-item{
    border-color: var(--divider-color);
}

.page-single-faqs.page-faq-accordion .accordion-header .accordion-button{
    color: var(--primary-color);
}

.page-single-faqs.page-faq-accordion .accordion-item .accordion-button::after,
.page-single-faqs.page-faq-accordion .accordion-item .accordion-button.collapsed::after{
    background: url('../images/arrow-primary.svg') no-repeat;
}

.page-single-faqs.page-faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
}

/* Service Quick Facts */
.service-quick-facts .fact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.service-quick-facts .fact-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.service-quick-facts .fact-card i {
    color: var(--accent-color);
}

/* Problem Section */
.service-problem {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.service-problem h2{
    margin-bottom: 10px;
}

.problem-points .problem-point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
}

/* Solution Steps */
.solution-steps {
    display: grid;
    gap: 15px;
}

.solution-step {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.solution-step .step-icon {
    width: 40px;
    height: 40px;
    background: rgba(206, 6, 6, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.solution-step .step-icon i {
    color: var(--accent-color);
    font-size: 18px;
}

/* Treatment Details */
.treatment-details .detail-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 100%;
}
.treatment-details h2{
    margin-bottom: 20px;
}

.treatment-details .detail-card ul {
    padding-left: 20px;
}

.treatment-details .detail-card li {
    margin-bottom: 8px;
    position: relative;
}

.treatment-details .detail-card li:before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}
.treatment-details .detail-card li::marker {
    content: '';
}
.treatment-details .detail-card h4{
    margin-bottom: 20px;
}

/* Health & Safety */
.health-safety .safety-box {
    background: #e8f4fd;
    border-left: 4px solid #2196F3;
    padding: 25px;
    border-radius: 8px;
}

.health-safety .safety-box h3 {
    color: #0c5460;
    margin-bottom: 15px;
}

.health-safety .safety-box ul {
    padding-left: 20px;
}

.health-safety .safety-box li {
    margin-bottom: 8px;
    color: #0c5460;
}

/* CTA Box */
.service-cta .cta-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.service-cta .cta-box .btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 20px;
    padding: 5px 20px;
    transition: 0.3s;
}

.service-cta .cta-box .btn-primary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.service-cta .cta-box .btn-outline-primary {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.service-cta .cta-box .btn-outline-primary:hover {
    background: white;
    color: var(--accent-color);
}

/* Service Details Card */
.service-details-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-details-card h4 {
    margin-bottom: 20px;
}
.service-details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.service-details-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-details-list li i {
    color: var(--accent-color);
    width: 20px;
}

.service-details-list li strong {
    flex: 0 0 100px;
    color: #333;
}

.service-details-list li span {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .solution-step {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-step .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .service-cta .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .service-cta .cta-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

/* ===================== */
/*  Single Projects  */
/* ===================== */

.page-projects{
    padding: 100px 0 70px;
}
.page-project-single {
    padding: 100px 0;
}

/* Wrapper */
.project-view {
    padding: 100px 0;
}

/* Sticky Sidebar */
.project-sidebar-sticky {
    position: sticky;
    top: 110px;
}

.project-featured-image img {
    border-radius: 28px;
    width: 100%;
    height: auto;
}

/* Project Info Card */
.project-info-card {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    color: var(--white-color);
}

/* Title */
.info-title {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--white-color);
}

/* Info List */
.project-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info-list li span {
    color: var(--light-gray);
    font-size: 14px;
}

.project-info-list li strong {
    font-weight: 600;
}

.project-info-list li a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.project-info-list li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.project-entry {
    margin-bottom: 70px;
}

/* Intro */
.project-intro {
    margin-bottom: 40px;
}

.project-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Sections */
.project-section {
    margin-bottom: 50px;
}

.project-section-title {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    color: var(--primary-color);
}

.project-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 8px;
}

.project-section p {
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Social */
.project-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    align-items: center;
}

.project-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.project-social a:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* CTA */
.project-cta-card {
    background: var(--accent-color);
    padding: 40px 30px;
    border-radius: 20px;
    color: var(--white-color);
    text-align: center;
    transition: var(--transition);
}

.project-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.project-cta-card span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.project-cta-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-cta-card a {
    color: var(--white-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
}

.project-cta-card a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Portfolio Gallery Slider */
.portfolio-gallery-slider {
    position: relative;
    margin-bottom: 40px;
}

.portfolio-gallery-slider .main-gallery {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.portfolio-gallery-slider .main-gallery .swiper-slide {
    position: relative;
    width: 100%;
}

.portfolio-gallery-slider .gallery-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 28px;
}

.portfolio-gallery-slider .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-gallery-slider .gallery-button-next,
.portfolio-gallery-slider .gallery-button-prev {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    margin-top: -25px;
}

.portfolio-gallery-slider .gallery-button-next:hover,
.portfolio-gallery-slider .gallery-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.portfolio-gallery-slider .gallery-button-next:after,
.portfolio-gallery-slider .gallery-button-prev:after {
    font-size: 20px;
    color: var(--white-color);
    font-weight: bold;
}

.portfolio-gallery-slider .gallery-button-prev {
    left: 20px;
}

.portfolio-gallery-slider .gallery-button-next {
    right: 20px;
}

/* Pagination */
.portfolio-gallery-slider .gallery-pagination {
    bottom: 20px !important;
}

.portfolio-gallery-slider .gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 0.5;
}

.portfolio-gallery-slider .gallery-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* Thumbnail Gallery */
.portfolio-gallery-slider .gallery-thumbs {
    margin-top: 20px;
}

.portfolio-gallery-slider .thumbnail-gallery {
    padding: 10px 0;
}

.portfolio-gallery-slider .thumbnail-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 80px;
}

.portfolio-gallery-slider .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-gallery-slider .thumbnail-gallery .swiper-slide-thumb-active .thumbnail-item {
    border-color: var(--accent-color);
    opacity: 1;
    transform: scale(1.05);
}

.portfolio-gallery-slider .thumbnail-gallery .swiper-slide:not(.swiper-slide-thumb-active) .thumbnail-item {
    opacity: 0.5;
}

.portfolio-gallery-slider .thumbnail-gallery .swiper-slide:hover .thumbnail-item {
    opacity: 0.8;
}

/* Portfolio Content */

/* Portfolio Content Styling */
.portfolio-content-section {
    margin: 40px 0;
}

.portfolio-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.portfolio-content > * {
    margin-bottom: 20px;
}

.portfolio-content h2,
.portfolio-content h3,
.portfolio-content h4,
.portfolio-content h5,
.portfolio-content h6 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-content h2 {
    font-size: 28px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.portfolio-content h3 {
    font-size: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.portfolio-content h4 {
    font-size: 20px;
}

.portfolio-content h5 {
    font-size: 18px;
}

.portfolio-content h6 {
    font-size: 16px;
}

/* Lists in content */
.portfolio-content ul,
.portfolio-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
}

.portfolio-content li {
    margin-bottom: 8px;
    position: relative;
}

.portfolio-content ul li {
    padding-left: 20px;
}

.portfolio-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}
.portfolio-content ul li::marker{
    display: none;
    content: '';
}

.portfolio-content ol {
    counter-reset: item;
}

.portfolio-content ol li {
    counter-increment: item;
    padding-left: 25px;
}

.portfolio-content ol li:before {
    content: counter(item) ". ";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: var(--accent-color);
}

/* Nested lists */
.portfolio-content ul ul,
.portfolio-content ol ol,
.portfolio-content ul ol,
.portfolio-content ol ul {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
}

/* Blockquotes */
.portfolio-content blockquote {
    border-left: 4px solid var(--accent-color);
    background: var(--secondary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.portfolio-content blockquote p:last-child {
    margin-bottom: 0;
}

.portfolio-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: var(--light-gray);
}

/* Tables */
.portfolio-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.portfolio-content table th,
.portfolio-content table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.portfolio-content table th {
    background-color: var(--secondary-color);
    font-weight: 600;
}

.portfolio-content table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Code and pre */
.portfolio-content code {
    background: var(--secondary-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.portfolio-content pre {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 20px 0;
    border-left: 3px solid var(--accent-color);
}

.portfolio-content pre code {
    background: none;
    padding: 0;
}

/* Images in content */
.portfolio-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.portfolio-content img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 50%;
}

.portfolio-content img.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: 50%;
}

.portfolio-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Links */
.portfolio-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.portfolio-content a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

/* Divider */
.portfolio-content hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

/* Address */
.portfolio-content address {
    font-style: italic;
    padding: 15px;
    background: var(--secondary-color);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 5px 5px 0;
}

/* Definition lists */
.portfolio-content dl {
    margin: 20px 0;
}

.portfolio-content dt {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

.portfolio-content dd {
    margin-left: 20px;
    padding: 5px 0;
    color: var(--text-color);
}

/* Project Tags */
.project-tags {
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.tags-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--white-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tag-item:hover {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

/* Portfolio Navigation */
.portfolio-navigation {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Featured project badge */
.text-accent {
    color: var(--accent-color) !important;
}

/* Gallery fixes */
.portfolio-gallery-slider .swiper {
    width: 100%;
}

.portfolio-gallery-slider .swiper-slide {
    width: 100%;
}

.faqs-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faqs-title span {
    color: var(--accent-color);
}

/* Testimonial Section */
.project-testimonial {
    margin: 40px 0;
    padding: 30px;
    background: var(--secondary-color);
    border-radius: 20px;
    color: var(--accent-color);
    position: relative;
}

.project-testimonial:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-family: serif;
    color: var(--text-color);
    line-height: 1;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
    text-align: right;
    position: relative;
    z-index: 1;
}

.testimonial-author:before {
    content: '— ';
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .portfolio-content img.alignleft,
    .portfolio-content img.alignright {
        float: none;
        margin: 20px auto;
        max-width: 100%;
        display: block;
    }
    
    .portfolio-content h2 {
        font-size: 24px;
    }
    
    .portfolio-content h3 {
        font-size: 20px;
    }
    
    .portfolio-navigation .col-md-6 {
        margin-bottom: 15px;
    }
    
    .portfolio-navigation .text-end {
        text-align: left !important;
    }
}

@media (max-width: 767px) {
    .portfolio-content {
        font-size: 15px;
    }
    
    .portfolio-content h2 {
        font-size: 22px;
    }
    
    .portfolio-content h3 {
        font-size: 18px;
    }
    
    .portfolio-content table {
        display: block;
        overflow-x: auto;
    }
    
    .tags-list {
        gap: 8px;
    }
    
    .tag-item {
        padding: 5px 12px;
        font-size: 13px;
    }
}
/* Portfolio Visit Button */
.portfolio-visit-btn {
    margin-top: 20px;
}

.portfolio-visit-btn .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-visit-btn .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-visit-btn .btn-primary i {
    margin-right: 8px;
}

/* Share Social Icons */
.share-label {
    display: block;
    color: var(--white-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.project-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.project-social a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================== */
/*  Pest Single css */
/* ===================== */

/* Pest Single */
.pest-view {
    padding: 100px 0;
    background: #f8fafc;
}

/* Sidebar Sticky Wrapper */
.pest-sidebar-sticky {
    position: sticky;
    top: 110px;
}

/* Pest Details Card */
.pest-details-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.pest-identification-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.nav-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.pest-identification-card .nav-title {
    color: var(--primary-color);
}

/* Details Lists */
.pest-details-list li,
.pest-identification-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pest-identification-list li {
    border-bottom: 1px solid var(--divider-color);
}

.pest-details-list li:last-child,
.pest-identification-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pest-details-list li i,
.pest-identification-list li i {
    color: var(--accent-color);
    width: 20px;
    font-size: 14px;
}

.pest-details-list li strong {
    flex: 0 0 120px;
    color: #cbd5e1;
    font-size: 14px;
}

.pest-identification-list li strong {
    flex: 0 0 120px;
    color: var(--primary-color);
    font-size: 14px;
}

.pest-details-list li span {
    color: #fff;
    font-size: 14px;
}

.pest-identification-list li span {
    color: var(--text-color);
    font-size: 14px;
}

.pest-identification-list li.align-items-start {
    align-items: flex-start;
}

.pest-identification-list li.align-items-start div {
    flex: 1;
}

.pest-identification-list li.align-items-start p {
    margin-top: 5px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Help Box */
.pest-help-box {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
}

.pest-help-box span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.pest-help-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.pest-help-box a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.pest-help-box a:hover {
    text-decoration: underline;
}

.pest-help-box .small {
    font-size: 14px;
    opacity: 0.9;
}

/* Pest Content */
.pest-featured-image {
    margin-bottom: 40px;
}

.pest-featured-image figure {
    display: block;
    border-radius: 24px;
    overflow: hidden;
}

.pest-featured-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.pest-featured-image figure:hover img {
    transform: scale(1.02);
}

/* Pest Entry */
.pest-entry {
    margin-bottom: 40px;
}

.pest-entry p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.pest-entry p:last-child {
    margin-bottom: 0;
}

/* Pest Sections */
.pest-overview,
.pest-damage,
.prevention-treatment,
.related-pests {
    margin-bottom: 50px;
}

/* Section Titles */
.pest-overview h2,
.pest-damage h2,
.prevention-treatment h2,
.related-pests .section-title h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    display: inline-block;
}

.pest-overview h2 span,
.pest-damage h2 span,
.prevention-treatment h2 span,
.related-pests .section-title h2 span {
    color: var(--accent-color);
}

/* Sub Headings */
.pest-overview h3,
.pest-biology h3,
.pest-characteristics h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.pest-biology h3:first-child {
    margin-top: 0;
}

/* Lists */
.pest-characteristics ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pest-characteristics ul li {
    line-height: 1.6;
    padding-left: 15px;
    margin-bottom: 12px;
    position: relative;
}
.pest-characteristics ul li::before{
       content: '+';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.pest-characteristics ul li:last-child {
    margin-bottom: 0;
}

/* Detail Cards (Damage & Prevention) */
.damage-detail-card,
.prevention-detail-card,
.treatment-detail-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.damage-detail-card:hover,
.prevention-detail-card:hover,
.treatment-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.damage-detail-card h4,
.prevention-detail-card h4,
.treatment-detail-card h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
}

.damage-detail-card ul,
.prevention-detail-card ul,
.treatment-detail-card ul {
    padding-left: 20px;
    margin: 0;
}

.damage-detail-card li,
.prevention-detail-card li,
.treatment-detail-card li {
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.damage-detail-card li:before,
.prevention-detail-card li:before,
.treatment-detail-card li:before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.damage-detail-card li::marker,
.prevention-detail-card li::marker,
.treatment-detail-card li::marker {
    content: '';
}

/* Related Pests */
.related-pests {
    padding-top: 40px;
    border-top: 1px solid var(--divider-color);
}

.related-pest-item {
    text-align: center;
}

.related-pest-image {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.related-pest-image img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.related-pest-item:hover .related-pest-image img {
    transform: scale(1.05);
}

.related-pest-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.related-pest-item h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.related-pest-item h4 a:hover {
    color: var(--accent-color);
}

/* Danger Level Colors */
.text-success {
    color: #28a745 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .pest-sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
    
    .pest-view {
        padding: 80px 0;
    }
    
    .pest-overview h2,
    .pest-damage h2,
    .prevention-treatment h2,
    .related-pests .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .pest-view {
        padding: 60px 0;
    }
    
    .pest-overview h2,
    .pest-damage h2,
    .prevention-treatment h2,
    .related-pests .section-title h2 {
        font-size: 28px;
    }
    
    .pest-overview h3,
    .pest-biology h3,
    .pest-characteristics h3 {
        font-size: 20px;
    }
    
    .pest-details-card,
    .pest-identification-card,
    .pest-help-box {
        padding: 20px;
    }
    
    .pest-details-list li strong,
    .pest-identification-list li strong {
        flex: 0 0 100px;
    }
    
    .related-pests .row .col-md-4 {
        margin-bottom: 30px;
    }
    
    .pest-entry p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .pest-details-list li,
    .pest-identification-list li {
        gap: 0px;
    }
    
    .pest-details-list li i,
    .pest-identification-list li i {
        margin-bottom: 5px;
    }
    
    .pest-details-list li strong,
    .pest-identification-list li strong{
        flex: 0 0 150px;
    }
}

/* ===================== */
/* Team Single css */
/* ===================== */

.page-team-single{
    padding: 100px 0;
}

.page-team-single-box{
	display: flex;
    flex-direction: column;
    gap: 50px;
}
.team-member-info-box{
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-member-image,
.team-member-content{
    width: 100%;
}

.team-member-image figure{
    display: block;
    border-radius: 24px;
}

.team-member-image img{
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.team-content p{
    font-size: 1rem;
}
.member-info-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;    
}

.member-info-list ul li{
    width: calc(50% - 15px);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
}

.member-info-list ul li span{
    width: 65%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
}

.member-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.member-social-list ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a i{
	color: inherit;
	font-size: 18px;
}

.member-social-list ul li a:hover{
	background: var(--primary-color);
}

.team-member-about .section-title{
    margin-bottom: 0;
}
.page-team-single-box .section-title h2{
    font-size: 30px;
}

/* Work Experience Styling */
.member-work-experience-content {
    border-radius: 8px;
    margin-bottom: 50px;
}

.member-work-experience-content .section-title {
    margin-bottom: 20px;
}

.work-experience-content {
    line-height: 1.6;
}

.work-experience-content h3,
.work-experience-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.work-experience-content ul,
.work-experience-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.work-experience-content p {
    margin-bottom: 15px;
}

.team-member-Skill-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
}

.team-member-Skill-capability,
.team-contact-form{
    width: calc(50% - 30px);
}

.team-member-skill-content{
    border-bottom: 1px solid var(--divider-color);
}


.skills-progress-bar{
    margin-bottom: 30px;
}

.skills-progress-bar:last-child{
    margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
	justify-content: space-between;
	gap: 10px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title{
	font-size: 20px;
	font-weight: 700;
    line-height: 1.2em;
    color: var(--white-color);
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
	font-size: 20px;
    line-height: 1.2em;
	font-weight: 500;
} 

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--text-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.team-skills-list .skills-progress-bar .skill-data .skill-title,
.team-skills-list .skills-progress-bar .skill-data .skill-no{
    color: var(--primary-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress{
    background: var(--secondary-color);
}

.member-capability-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-capability-content ul li{
	position: relative;
    line-height: 1.5em;
    text-transform: capitalize;
    padding-left: 25px;
    margin-bottom: 15px;
}

.member-capability-content ul li:last-child{
    margin-bottom: 0;
}

.member-capability-content ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    left: 0;
    top: 0;
    font-size: 16px;
    color: var(--accent-color);
}

.team-contact-form{
    background-color: var(--secondary-color);
    border-radius: 24px;
    padding: 40px;
}

/* Team Sidebar */
.team-sidebar-sticky {
    position: sticky;
    top: 110px;
}

.team-sidebar-details {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 30px;
    color: var(--white-color);
}

.team-contact-card,
.team-social-card {
    margin-bottom: 30px;
}

.team-contact-card:last-child,
.team-social-card:last-child {
    margin-bottom: 0;
}

.info-title {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.team-contact-list {
    margin: 0;
    padding: 0;
}

.team-contact-list li {
    margin-bottom: 20px;
}

.team-contact-list li:last-child {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white-color);
    font-size: 16px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--accent-color);
}

/* Team Social Links */
.team-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

.social-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.social-label {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .team-sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
    
    .team-sidebar-details {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .team-member-info-box{
        flex-direction: column;
    }
    .team-sidebar-details {
        padding: 20px 15px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .contact-value {
        font-size: 15px;
    }
    
    .social-link {
        padding: 10px 12px;
    }
}

/* ===================== */
/* Image Gallery css */
/* ===================== */
.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 24px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
	border-radius: 24px;
}


/* ===================== */
/* Responsive css */
/* ===================== */

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 15px 20px;
	}

	.btn-default::before{
		
		width: 100%;
		height: 46px;
	}

	.topbar-contact-info ul{
		gap: 15px;
	}

	.topbar-contact-info ul li i{
		margin-right: 5px;
	}

	.topbar-social-links ul li{
		margin-right: 10px;
	}

	.topbar-social-links ul li a i{
		font-size: 16px;
	}

	.navbar{
		padding: 15px 0;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-sidebar-btn{
		display: none;
	}


	.faq-section{
		padding: 50px 0;
	}

	.faq-section-image{
        width: 100%;
        max-width: 81%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

	.faq-accordion .accordion-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding-right: 25px;
	}

	.faq-accordion .accordion-button:not(.collapsed){
		margin-bottom: 6px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		width: 20px;
		height: 20px;
	}

    
   .page-faqs-catagery .page-faq-accordion{
            margin-bottom: 60px;
        }

    .page-faqs-catagery .page-faq-accordion:last-child{
            margin-bottom: 0px;
        }



    .skills-progress-bar{
        margin-bottom: 20px;
    }

    .skills-progress-bar .skillbar .skill-progress{
        height: 12px;
    }

    .error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 50%;
	}

    .error-page-content .section-title,
    .error-page-content-body p{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px){

	.topbar-social-links{
		display: none;
	}

	.topbar-contact-info ul{
		gap: 5px;
		flex-direction: column;
		align-items: center;
	}


	.faq-section-image{
		background-position: left 75px bottom 45px;
        max-width: 100%;
        margin-bottom: 30px;
    }

	.faqs-img-1{
		padding-right: 152px;
	}

	.faqs-img-2{
		max-width: 210px;
		margin: 0 auto;
		margin-right: 0;
		margin-top: -110px;
	}

	.faqs-img-3{
		top: 50px;
		max-width: 140px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 0px;
	}
}

/* ===================== */
/* Comments Area */
/* ===================== */

.comments-area {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

/* Comments Header */
.comments-header {
    margin-bottom: 40px;
}

.comments-title {
    font-size: 28px;
    color: var(--heading-color, #333);
    margin-bottom: 20px;
}

/* Comments Navigation */
.comments-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color, #e0e0e0);
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.comments-navigation.bottom {
    margin-top: 40px;
}

.nav-previous a,
.nav-next a {
    color: var(--text-color, #666);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--accent-color, #ce0606);
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list > .comment {
    margin-bottom: 30px;
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin: 20px 0 0;
    border-left: 2px solid var(--border-color, #e0e0e0);
}

@media (max-width: 768px) {
    .comment-list .children {
        padding-left: 20px;
    }
}

/* Comment Body */
.comment-body {
    background: var(--white-color, #ffffff);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.comment-body:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color, #ce0606);
}

.comment-body:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--border-color, #e0e0e0);
}

.comment-body:after {
    content: '';
    position: absolute;
    top: 20px;
    left: -9px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white-color, #ffffff);
}

.comment-body:hover:before {
    border-right-color: var(--accent-color, #ce0606);
}

/* Comment Meta */
.comment-meta {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-author-info {
    flex: 1;
}

.comment-author .fn {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color, #333);
    margin-bottom: 5px;
}

.comment-author .fn a {
    color: inherit;
    text-decoration: none;
}

.comment-author .fn a:hover {
    color: var(--accent-color, #ce0606);
}

.comment-awaiting-moderation {
    display: block;
    font-size: 13px;
    color: var(--accent-color, #ce0606);
    font-style: italic;
    margin: 5px 0;
    padding: 5px 10px;
    background: rgba(206, 6, 6, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color, #ce0606);
}

.comment-metadata {
    font-size: 13px;
    color: var(--text-color, #666);
}

.comment-metadata a {
    color: inherit;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--accent-color, #ce0606);
    text-decoration: underline;
}

.edit-link {
    margin-left: 10px;
}

.edit-link a {
    color: var(--text-color, #666);
    text-decoration: none;
    font-size: 12px;
}

.edit-link a:hover {
    color: var(--accent-color, #ce0606);
}

/* Comment Content */
.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color, #333);
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-content a {
    color: var(--accent-color, #ce0606);
    text-decoration: none;
}

.comment-content a:hover {
    text-decoration: underline;
}

.comment-content code {
    background: var(--secondary-color, #f8f9fa);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
}

.comment-content pre {
    background: var(--secondary-color, #f8f9fa);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 14px;
    margin: 10px 0;
}

.comment-content blockquote {
    border-left: 3px solid var(--accent-color, #ce0606);
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
    color: var(--text-color, #666);
}

/* Comment Actions */
.comment-actions {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.comment-actions .reply a,
.comment-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color, #666);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.comment-actions .reply a:hover,
.comment-edit-link:hover {
    color: var(--accent-color, #ce0606);
}

.comment-actions .reply a i,
.comment-edit-link i {
    font-size: 12px;
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 30px;
    background: var(--secondary-color, #f8f9fa);
    border-radius: 8px;
    color: var(--text-color, #666);
    font-style: italic;
    margin: 40px 0;
}

/* ===================== */
/* Comment Form */
/* ===================== */

.comment-form {
    margin-top: 40px;
    padding: 30px;
    background: var(--secondary-color, #f8f9fa);
    border-radius: 12px;
}

.comment-reply-title {
    font-size: 24px;
    color: var(--heading-color, #333);
    margin-bottom: 25px;
    margin-top: 25px;
}

.comment-reply-title small {
    font-size: 14px;
    margin-left: 10px;
}

.comment-reply-title small a {
    color: var(--accent-color, #ce0606);
    text-decoration: none;
}

.comment-reply-title small a:hover {
    text-decoration: underline;
}

.comment-notes {
    font-size: 14px;
    color: var(--text-color, #666);
    margin-bottom: 20px;
    font-style: italic;
}

.required-field-message {
    color: var(--accent-color, #ce0606);
    font-size: 14px;
    margin-bottom: 20px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 25px;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: var(--heading-color, #333);
    margin-bottom: 8px;
    font-size: 15px;
}

.comment-form label .required {
    color: var(--accent-color, #ce0606);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-color, #333);
    background: var(--white-color, #ffffff);
    transition: all 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
    border-color: var(--accent-color, #ce0606);
    outline: none;
    box-shadow: 0 0 0 3px rgba(206, 6, 6, 0.1);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.comment-form-cookies-consent label {
    font-weight: normal;
    margin: 0;
    color: var(--text-color, #666);
    font-size: 14px;
}

.form-submit {
    margin-top: 30px;
}

.btn-comment-submit {
    padding: 12px 30px;
    background: var(--accent-color, #ce0606);
    color: var(--white-color, #ffffff);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-comment-submit:hover {
    background: var(--primary-color, #002F47);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Logged in user */
.logged-in-as {
    font-size: 14px;
    color: var(--text-color, #666);
    margin-bottom: 20px;
}

.logged-in-as a {
    color: var(--accent-color, #ce0606);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* ===================== */
/* Responsive Adjustments */
/* ===================== */

@media (max-width: 768px) {
    .comments-title {
        font-size: 24px;
    }
    
    .comment-reply-title {
        font-size: 20px;
    }
    
    .comment-form {
        padding: 20px;
    }
    
    .comment-body {
        padding: 20px;
    }
    
    .comment-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .comments-area {
        margin: 40px 0;
        padding-top: 30px;
    }
    
    .comment-form textarea,
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"] {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-comment-submit {
        padding: 10px 25px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .comments-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .comment-list .children {
        padding-left: 15px;
    }
}