/**
 * Homepage SEO Content CSS
 * iScents Core Plugin
 */
.hero-heading h1{
    font-size: 3.50rem !important;
}

/* Trust Bar Container */
.iscents-homepage-trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Each Item */
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 15px;
    position: relative;
}

/* Vertical Divider */
.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e5e5e5;
}

/* Icon */
.trust-icon {
    font-size: 20px;
    background: none;
    width: auto;
    height: auto;
}

/* Text */
.trust-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.trust-text p {
    font-size: 12px;
    margin: 0;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .iscents-homepage-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        border: none;
    }

    .trust-item {
        width: 100%;
        padding: 12px 0;
    }

    .trust-item::after {
        display: none;
    }

    .trust-item:not(:last-child) {
        border-bottom: 1px solid #eee;
    }
}
/* Main Wrapper */
.iscents-homepage-content-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}


/* Content Container */
.iscents-homepage-content-block {
    /* Add your custom styles here if needed */
}

/* Headings */
.iscents-homepage-content-block h1 {
    /* Add your custom styles here if needed */
}

.iscents-homepage-content-block h2 {
    position: relative;
    font-size: 2rem; 
    margin-bottom:10px;
}

.iscents-homepage-content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e4b565, #d4a03a);
    border-radius: 2px;
}

.iscents-homepage-content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #24262e;
    margin: 30px 0 20px;
}

.iscents-homepage-content-block h4, .faq-question h3{
    font-size: 1.25rem; 
    font-weight: 600;
    color: #24262e;
    margin-bottom: 8px;
}

/* Paragraphs */
.iscents-homepage-content-block p {
    
    color: #495057;
    margin-bottom: 18px;
}

.iscents-homepage-content-block p strong {
    color: #24262e;
    font-weight: 600;
}

/* Features Grid */
.iscents-homepage-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 30px 0 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0 8px;
    color: #24262e;
}

.feature-item p {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

/* Homepage FAQ Section - Matching About Us Style */
.iscents-homepage-faq {
    /*max-width: 800px;*/
    margin: 30px auto 0;
}

.iscents-homepage-faq .faq-item {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.iscents-homepage-faq .faq-item:hover {
    border-color: #e4b565;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.iscents-homepage-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.iscents-homepage-faq .faq-question:hover {
    background: #fafafa;
}

.iscents-homepage-faq .faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: #24262e;
    margin: 0;
    flex: 1;
}

.iscents-homepage-faq .faq-toggle {
    font-size: 24px;
    font-weight: 600;
    color: #e4b565;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.iscents-homepage-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.iscents-homepage-faq .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    /*background: #fafafa;*/
    border-top: 1px solid transparent;
}

.iscents-homepage-faq .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 500px;
    border-top-color: #f0f0f0;
}

.iscents-homepage-faq .faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.iscents-homepage-faq .faq-answer strong {
    font-weight: 700;
    color: #24262e;
}

.iscents-homepage-faq .faq-answer a {
    color: #e4b565;
    text-decoration: none;
}

.iscents-homepage-faq .faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .iscents-homepage-faq .faq-question {
        padding: 14px 18px;
    }
    
    .iscents-homepage-faq .faq-question h4 {
        font-size: 15px;
    }
    
    .iscents-homepage-faq .faq-toggle {
        font-size: 20px;
    }
    
    .iscents-homepage-faq .faq-item.active .faq-answer {
        padding: 0 18px 16px 18px;
    }
    
    .iscents-homepage-faq .faq-answer p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .iscents-homepage-content-block {
        padding: 20px;
    }
    
    .iscents-homepage-content-block h2 {
        font-size: 22px;
    }
    
    .iscents-homepage-content-block h3 {
        font-size: 18px;
    }
    
    .iscents-homepage-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 28px;
    }
    
    
}

@media (max-width: 480px) {
    .iscents-homepage-features {
        grid-template-columns: 1fr;
    }
}



.iscents-homepage-comparison {
    margin: 40px 0;
}

.iscents-homepage-comparison h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.iscents-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.iscents-comparison-table th {
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.iscents-comparison-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
}

.iscents-comparison-table tr:last-child td {
    border-bottom: none;
}

.iscents-comparison-table td:first-child {
    font-weight: 600;
    color: #333;
}

.iscents-comparison-table td:nth-child(2) {
    color: #1a7a1a;
    background: #f8faf8;
}

.iscents-comparison-table td:nth-child(3) {
   /* color: #999;*/
}

@media (max-width: 600px) {
    .iscents-comparison-table th,
    .iscents-comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}





.iscents-homepage-cta {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    margin: 40px 0;
}

.iscents-homepage-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.iscents-homepage-cta p {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.iscents-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.iscents-cta-btn {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.iscents-cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .iscents-homepage-cta {
        padding: 28px 20px;
    }
    
    .iscents-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .iscents-cta-btn {
        width: 100%;
        max-width: 250px;
    }
}