/**
 * Deenshow New Muslim - Frontend Styles
 */

/* Main container */
.icg-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
}

/* Sections */
.icg-section {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icg-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.icg-section-inner {
    padding: 35px;
}

.icg-section h2 {
    color: #2e7d32;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #f1f8e9;
    padding-bottom: 15px;
    position: relative;
}

.icg-section h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background: #2e7d32;
}

/* Typography */
.icg-container h3 {
    color: #1b5e20;
    font-size: 1.5em;
    margin: 28px 0 16px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.icg-container h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 4px;
    background: #8bc34a;
    border-radius: 2px;
}

.icg-container p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
}

/* Buttons */
.icg-button {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white !important;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 8px 5px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(27, 94, 32, 0.2);
    position: relative;
    overflow: hidden;
}

.icg-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: skewX(-20deg);
}

.icg-button:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(27, 94, 32, 0.3);
    color: white !important;
    text-decoration: none;
}

.icg-button:hover:before {
    left: 100%;
}

.icg-button-secondary {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    color: #333;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.icg-button-secondary:hover {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    color: #222;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.icg-button-group {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* Call to action box */
.icg-cta-box {
    background: #f1f8e9;
    border-left: 4px solid #2e7d32;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Accordion */
.icg-accordion {
    margin: 20px 0;
}

.icg-accordion-header {
    background: #f5f5f5;
    padding: 15px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    position: relative;
}

.icg-accordion-header:after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.icg-accordion-header.active:after {
    content: "-";
}

.icg-accordion-content {
    display: none;
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.icg-accordion-content.active {
    display: block;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .icg-section {
        scroll-margin-top: 200px; /* More space for mobile scrolling */
    }
    
    .icg-section-inner {
        padding: 25px 20px;
    }
    
    .icg-section h2 {
        font-size: 1.7em;
    }
    
    .icg-container h3 {
        font-size: 1.3em;
    }
}

/* General Content Styling */
.icg-container h2 {
    font-size: 2em;
    color: #1e73be;
    margin-bottom: 20px;
}

.icg-container h3 {
    font-size: 1.5em;
    color: #333;
    margin: 20px 0 15px;
}

.icg-container p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Buttons */
.icg-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1e73be;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin: 5px 0;
}

.icg-button:hover {
    background-color: #135e9e;
    color: #fff;
}

.icg-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

/* CTA Box */
.icg-cta-box {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #1e73be;
}

/* Action Box */
.icg-action-box {
    margin: 30px 0;
}

/* Steps */
.icg-steps {
    margin: 20px 0;
}

.icg-step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.icg-step-number {
    background-color: #1e73be;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.icg-step-content {
    flex-grow: 1;
}

.icg-step-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1e73be;
}

/* Modal */
.icg-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.icg-modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.icg-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.icg-close:hover {
    color: #333;
}

/* Forms */
.icg-form-group {
    margin-bottom: 15px;
}

.icg-form-group input[type="text"],
.icg-form-group input[type="email"],
.icg-form-group input[type="tel"],
.icg-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.icg-form-group textarea {
    height: 100px;
}

.icg-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.icg-response.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.icg-response.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Shahada Section */
.icg-shahada-box {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.icg-shahada-text {
    margin: 20px 0;
}

.icg-arabic {
    font-size: 2em;
    font-family: "Traditional Arabic", "Arabic Typesetting", serif;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
    direction: rtl;
}

.icg-transliteration {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
    font-style: italic;
}

.icg-translation {
    font-size: 1.1em;
    color: #666;
}

.icg-audio-player {
    margin: 20px 0;
}

.icg-audio-player audio {
    width: 100%;
    max-width: 400px;
}

.icg-shahada-explanation {
    margin-top: 30px;
}

.icg-shahada-explanation ol {
    padding-left: 20px;
}

.icg-shahada-explanation li {
    margin-bottom: 15px;
}

.icg-practice-shahada {
    margin: 20px 0;
}

.icg-shahada-part {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.icg-shahada-part:hover {
    background-color: #e8e8e8;
}

.icg-shahada-part .icg-arabic,
.icg-shahada-part .icg-transliteration {
    margin-bottom: 5px;
}

/* Five Pillars of Islam Section */
.icg-pillars-container {
    margin: 30px 0;
}

.icg-pillars-intro {
    margin-bottom: 25px;
}

.icg-pillar {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icg-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.icg-pillar-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.icg-pillar-header:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    animation: pulse 1.5s infinite;
}

.icg-pillar-header:after {
    content: "+";
    font-size: 22px;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.icg-pillar-header.active:after {
    content: "-";
    transform: rotate(180deg);
}

.icg-pillar-content {
    background: #fff;
    display: none;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.icg-pillar-content.active {
    padding: 20px 25px;
}

.icg-pillar-inner {
    padding: 20px 25px;
}

.icg-pillar-title {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.icg-pillar-description {
    margin-bottom: 15px;
}

.icg-pillar-details {
    margin-top: 15px;
}

.icg-pillar-details h4 {
    color: #1b5e20;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.icg-pillar-details ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.icg-pillar-details li {
    margin-bottom: 8px;
}

.icg-pillar-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .icg-pillar-header {
        padding: 15px;
    }
    
    .icg-pillar-inner {
        padding: 15px;
    }
}

/* Responsive media queries */
@media (min-width: 769px) {
    /* No additional styles needed */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* New Section Styles */
.icg-subsection {
    margin-bottom: 40px;
}

.icg-subsection h3 {
    color: #2e7d32;
    font-size: 1.3em;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.icg-callout-box {
    background-color: #f1f8e9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.icg-callout-box h4 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

.icg-callout-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.icg-callout-box li {
    margin-bottom: 10px;
}

.icg-learning-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.icg-learning-list li {
    background-color: #fff;
    border-left: 3px solid #2e7d32;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icg-learning-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icg-approach-wisdom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.icg-wisdom-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icg-wisdom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icg-wisdom-item h4 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.icg-avoid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.icg-avoid-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #ff9800;
}

.icg-avoid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icg-avoid-item h4 {
    color: #ff9800;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .icg-approach-wisdom,
    .icg-avoid-list {
        grid-template-columns: 1fr;
    }
    
    .icg-learning-list li:hover {
        transform: none;
    }
    
    .icg-wisdom-item:hover,
    .icg-avoid-item:hover {
        transform: none;
    }
}

/* Navigation between sections */
.icg-next-steps {
    text-align: center;
    margin: 30px 0 15px;
}

.icg-next-steps .icg-button-group {
    justify-content: center;
    margin-top: 20px;
}

.icg-next-steps .icg-button {
    padding: 12px 25px;
    margin: 10px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.icg-next-steps .icg-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Learning Grid Layout */
.icg-learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.icg-learning-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid #2e7d32;
}

.icg-learning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icg-learning-card h4 {
    color: #2e7d32;
    margin: 15px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.icg-learning-card p {
    color: #555;
    line-height: 1.6;
}

.icg-learning-icon {
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.icg-learning-card:hover .icg-learning-icon {
    transform: scale(1.1);
}

/* Icons for learning cards */
.quran-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5c-1.95,0-4.05,0.4-5.5,1.5v14.65c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"/></svg>');
}

.aqeedah-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z"/></svg>');
}

.dhikr-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2zm0,18c-4.41,0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>');
}

.halal-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z M12,13l-4-4h8L12,13z"/></svg>');
}

.modesty-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M12,2C8.14,2,5,5.14,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.14,15.86,2,12,2z M12,11.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S13.38,11.5,12,11.5z"/></svg>');
}

.akhlaq-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M16,13h-3V3h-2v10H8l4,4L16,13z M4,19v2h16v-2H4z"/></svg>');
}

.sadaqah-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/></svg>');
}

/* Responsive adjustments for learning grid */
@media (max-width: 768px) {
    .icg-learning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .icg-learning-card {
        padding: 20px;
    }
    
    .icg-learning-card:hover {
        transform: none;
    }
}

/* Inline Mosque Finder */
.icg-mosque-finder-container {
    margin-top: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #2e7d32;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.icg-mosque-finder-content {
    max-width: 100%;
}

.icg-mosque-finder-content h3 {
    margin-top: 0;
    color: #2e7d32;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.icg-results {
    margin-top: 20px;
}

.icg-mosque-result {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icg-mosque-result:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.icg-mosque-result h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.icg-mosque-details p {
    margin-bottom: 8px;
    color: #555;
}

.icg-mosque-details strong {
    color: #333;
}

.icg-mosque-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.icg-get-directions {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.icg-get-directions:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    text-decoration: none;
    color: white;
}

.icg-directions-icon {
    font-weight: bold;
}

.icg-mosque-website {
    color: #1976d2;
    text-decoration: none;
}

.icg-mosque-website:hover {
    text-decoration: underline;
}

/* New numbered mosque list styles */
.icg-mosque-count {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.icg-mosque-result {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icg-mosque-result:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.icg-mosque-number {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
    margin-top: 5px;
}

.icg-mosque-content {
    flex: 1;
}

.icg-mosque-content h4 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.icg-mosque-details p {
    margin-bottom: 8px;
    color: #555;
}

.icg-mosque-details strong {
    color: #333;
}

.icg-mosque-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.icg-get-directions {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.icg-get-directions:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    text-decoration: none;
    color: white;
}

.icg-directions-icon {
    font-weight: bold;
}

.icg-mosque-website {
    word-break: break-all;
}

/* Fix accordion behavior */
.icg-pillar-header {
    position: relative;
    z-index: 1;
}

.icg-pillar-content {
    position: relative;
    z-index: 0;
}

/* Ensure Quran Request button text is always white */
.icg-button[data-action="quran-form"],
.icg-button[data-action="quran-form"]:hover,
.icg-button[data-action="quran-form"]:active,
.icg-button[data-action="quran-form"]:focus,
.icg-button[data-action="quran-form"]:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Ensure all button states have consistent white text */
.icg-button,
.icg-button:hover,
.icg-button:active,
.icg-button:focus,
.icg-button:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Contact Options Styling */
.icg-contact-options {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.icg-whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.icg-whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}

.icg-email-button {
    background: linear-gradient(135deg, #4285F4, #1a73e8) !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.icg-email-button:hover {
    background: linear-gradient(135deg, #1a73e8, #4285F4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3) !important;
}

.icg-whatsapp-icon,
.icg-email-icon {
    font-size: 1.2em;
}

.icg-contact-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .icg-contact-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .icg-whatsapp-button,
    .icg-email-button {
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Mosque finder responsive styles */
    .icg-mosque-result {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .icg-mosque-number {
        align-self: center;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .icg-mosque-content h4 {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .icg-mosque-count {
        padding: 10px 12px;
        font-size: 0.9em;
    }
}

/* Shahada Contact Form Modal */
#icg-shahada-contact-modal .icg-modal-content {
    max-width: 500px;
    padding: 30px;
}

#icg-shahada-contact-modal h2 {
    color: #2e7d32;
        margin-bottom: 15px;
        text-align: center;
    }
    
#icg-shahada-contact-modal p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

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

.icg-form-group label {
    display: block;
        margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.icg-form-group input,
.icg-form-group textarea {
        width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.icg-form-group input:focus,
.icg-form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.icg-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.icg-form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.icg-button-primary {
    background: linear-gradient(135deg, #2e7d32, #1b5e20) !important;
    color: white !important;
    border: none !important;
}

.icg-button-primary:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32) !important;
    transform: translateY(-2px) !important;
}

.icg-button-secondary {
    background: #f5f5f5 !important;
    color: #666 !important;
    border: 2px solid #ddd !important;
}

.icg-button-secondary:hover {
    background: #e0e0e0 !important;
    color: #333 !important;
}

#icg-shahada-contact-response {
    margin-top: 20px;
    text-align: center;
}

#icg-shahada-contact-response .icg-success {
    color: #2e7d32;
    background: #e8f5e8;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #c8e6c9;
}

#icg-shahada-contact-response .icg-error {
    color: #d32f2f;
    background: #ffebee;
        padding: 15px;
    border-radius: 6px;
    border: 1px solid #ffcdd2;
}

#icg-shahada-contact-response .icg-loading {
    color: #1976d2;
    background: #e3f2fd;
        padding: 15px;
    border-radius: 6px;
    border: 1px solid #bbdefb;
}

/* Responsive form styles */
@media (max-width: 768px) {
    #icg-shahada-contact-modal .icg-modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .icg-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .icg-form-actions .icg-button {
        width: 100%;
        justify-content: center;
    }
}

/* Contact buttons for Shahada step */
.contact-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.email-btn {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white !important;
}

.email-btn:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: white !important;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: white !important;
}

.contact-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ===================================
   CONVERSION FOCUS LAYOUT WITH SIDEBAR
   =================================== */

/* Main Container */
.icg-conversion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Main Content Area (70%) */
.icg-conversion-main {
    flex: 1;
    max-width: 840px;
}

/* Sidebar (30%) */
.icg-conversion-sidebar {
    width: 360px;
    flex-shrink: 0;
}

/* Hero Section */
.icg-conversion-hero {
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #c8e6c9;
}

.icg-conversion-hero h1 {
    color: #1b5e20;
    font-size: 2.5em;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.icg-hero-subtitle {
    font-size: 1.2em;
    color: #2e7d32;
    margin-bottom: 25px;
    line-height: 1.6;
}

.icg-encouragement-box {
    background: rgba(46, 125, 50, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2e7d32;
}

.icg-encouragement-box p {
    margin: 0;
    font-size: 1.1em;
    color: #1b5e20;
}

/* Shahada Declaration */
.icg-shahada-declaration {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.icg-shahada-main-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e8f5e8;
}

.icg-shahada-text-large {
    text-align: center;
    margin-bottom: 30px;
}

.icg-arabic-large {
    font-size: 2.2em;
    color: #1b5e20;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: 'Amiri', 'Times New Roman', serif;
}

.icg-transliteration-large {
    font-size: 1.4em;
    color: #2e7d32;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 500;
}

.icg-translation-large {
    font-size: 1.2em;
    color: #424242;
    font-weight: 500;
}

.icg-audio-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.icg-shahada-audio {
    width: 100%;
    max-width: 400px;
    margin: 15px 0;
}

.icg-audio-note {
    color: #666;
    font-style: italic;
    margin: 10px 0 0 0;
}

/* Practice Section */
.icg-practice-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.icg-practice-parts {
    display: grid;
    gap: 25px;
    margin-top: 25px;
}

.icg-practice-part {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2e7d32;
}

.icg-practice-part h4 {
    color: #1b5e20;
    margin: 0 0 15px 0;
    font-size: 1.2em;
}

.icg-practice-arabic {
    font-size: 1.8em;
    color: #1b5e20;
    margin-bottom: 10px;
    font-family: 'Amiri', 'Times New Roman', serif;
}

.icg-practice-transliteration {
    font-size: 1.2em;
    color: #2e7d32;
    font-style: italic;
    margin-bottom: 8px;
}

.icg-practice-meaning {
    color: #555;
    font-size: 1.1em;
}

/* Next Steps Section */
.icg-next-steps-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.icg-immediate-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.icg-step-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.icg-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icg-step-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.icg-step-card h3 {
    color: #1b5e20;
    margin: 0 0 15px 0;
    font-size: 1.3em;
}

.icg-step-card p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Ready Section */
.icg-ready-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.icg-shahada-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.icg-option-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.icg-private-option {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border: 2px solid #c8e6c9;
}

.icg-guided-option {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border: 2px solid #bbdefb;
}

.icg-option-card:hover {
    transform: translateY(-3px);
}

.icg-option-card h3 {
    color: #1b5e20;
    margin: 0 0 15px 0;
    font-size: 1.4em;
}

.icg-contact-options-main {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mosque Section */
.icg-mosque-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.icg-mosque-section .icg-mosque-finder-container {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    margin-top: 25px;
}

/* After Converting Section */
.icg-after-converting-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* What Else Section */
.icg-what-else-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Avoid Section */
.icg-avoid-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Approach Wisdom Grid */
.icg-approach-wisdom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.icg-wisdom-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #2e7d32;
}

.icg-wisdom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icg-wisdom-item h4 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Sidebar Widgets */
.icg-sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
}

.icg-sidebar-widget h3 {
    color: #1b5e20;
    margin: 0 0 20px 0;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
}

/* Conversion Counter */
.icg-conversion-counter {
    text-align: center;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
    border: 2px solid #c8e6c9;
}

.icg-counter-number {
    font-size: 3em;
    font-weight: 700;
    color: #2e7d32;
    margin: 10px 0;
}

.icg-counter-subtext {
    color: #1b5e20;
    font-weight: 500;
    font-size: 1.1em;
}

/* Progress Widget */
.icg-progress-steps {
    space-y: 10px;
}

.icg-progress-step {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.icg-progress-step.completed {
    background: #e8f5e8;
    color: #1b5e20;
    border-left: 4px solid #4caf50;
}

.icg-progress-step.current {
    background: #fff3e0;
    color: #e65100;
    border-left: 4px solid #ff9800;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.icg-progress-step:not(.completed):not(.current) {
    background: #f5f5f5;
    color: #999;
    border-left: 4px solid #e0e0e0;
}

/* Reassurance Box */
.icg-reassurance-box {
    background: linear-gradient(135deg, #fff8e1, #fffde7);
    border: 1px solid #ffecb3;
}

.icg-reassurance-quote {
    background: rgba(255, 193, 7, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid #ffc107;
}

.icg-reassurance-quote em {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #e65100;
}

.icg-reassurance-quote small {
    color: #bf360c;
    font-weight: 500;
}

/* Testimonials */
.icg-testimonial-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #2e7d32;
}

.icg-testimonial-item:last-child {
    margin-bottom: 0;
}

.icg-testimonial-item p {
    margin: 0 0 10px 0;
    font-style: italic;
    color: #333;
}

.icg-testimonial-item small {
    color: #666;
    font-weight: 500;
}

/* Support Buttons */
.icg-support-buttons {
    display: flex;
    gap: 10px;
}

.icg-support-btn {
    flex: 1;
    padding: 12px 8px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.icg-whatsapp-btn {
    background: #25d366;
    color: white;
}

.icg-whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.icg-email-btn {
    background: #1976d2;
    color: white;
}

.icg-email-btn:hover {
    background: #1565c0;
    color: white;
}

/* Certificate Preview */
.icg-certificate-mockup {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.icg-certificate-header {
    font-size: 1.2em;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.icg-certificate-name {
    font-size: 1.3em;
    font-weight: 600;
    color: #2e7d32;
    margin: 10px 0;
    padding: 8px;
    background: #f1f8e9;
    border-radius: 5px;
}

.icg-certificate-date {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.icg-certificate-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0 0 20px 0;
}

/* Certificate Download Form */
.icg-certificate-download {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 15px;
}

.icg-certificate-download h4 {
    color: #1b5e20;
    margin: 0 0 10px 0;
    font-size: 1.1em;
    text-align: center;
}

.icg-certificate-download p {
    color: #555;
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 15px;
}

.icg-certificate-form .icg-form-group {
    margin-bottom: 12px;
}

.icg-certificate-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.icg-certificate-form input[type="email"]:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.icg-button-small {
    padding: 8px 16px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    margin-top: 5px;
}

#icg-certificate-response {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
}

#icg-certificate-response .icg-success {
    color: #2e7d32;
    background: #e8f5e8;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c8e6c9;
}

#icg-certificate-response .icg-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ffcdd2;
}

#icg-certificate-response .icg-loading {
    color: #1976d2;
    background: #e3f2fd;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #bbdefb;
}

/* Private Shahada Modal */
.icg-private-shahada-content {
    max-width: 600px;
    text-align: center;
}

.icg-modal-shahada-text {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #e8f5e8;
}

.icg-modal-shahada-text .icg-arabic {
    font-size: 1.8em;
    color: #1b5e20;
    margin-bottom: 15px;
    font-family: 'Amiri', 'Times New Roman', serif;
}

.icg-modal-shahada-text .icg-transliteration {
    font-size: 1.2em;
    color: #2e7d32;
    font-style: italic;
}

.icg-shahada-confirmation {
    margin: 25px 0;
}

.icg-confirm-shahada {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icg-confirm-shahada:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

#icg-shahada-success {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #c8e6c9;
}

#icg-shahada-success h3 {
    color: #1b5e20;
    margin: 0 0 20px 0;
    font-size: 1.8em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .icg-conversion-container {
        flex-direction: column;
    }
    
    .icg-conversion-sidebar {
        width: 100%;
        order: -1;
    }
    
    .icg-sidebar-widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .icg-conversion-container {
        padding: 15px;
    }
    
    .icg-conversion-hero {
        padding: 25px;
    }
    
    .icg-conversion-hero h1 {
        font-size: 2em;
    }
    
    .icg-shahada-declaration,
    .icg-practice-section,
    .icg-next-steps-section,
    .icg-ready-section,
    .icg-mosque-section,
    .icg-after-converting-section,
    .icg-what-else-section,
    .icg-avoid-section {
        padding: 25px;
    }
    
    .icg-shahada-options {
        grid-template-columns: 1fr;
    }
    
    .icg-immediate-steps {
        grid-template-columns: 1fr;
    }
    
    .icg-arabic-large {
        font-size: 1.8em;
    }
    
    .icg-transliteration-large {
        font-size: 1.2em;
    }
    
    .icg-contact-options-main {
        flex-direction: column;
    }
    
    .icg-support-buttons {
        flex-direction: column;
    }
    
    .icg-counter-number {
        font-size: 2.5em;
    }
    
    .icg-approach-wisdom {
        grid-template-columns: 1fr;
    }
    
    .icg-wisdom-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .icg-conversion-hero h1 {
        font-size: 1.8em;
    }
    
    .icg-hero-subtitle {
        font-size: 1.1em;
    }
    
    .icg-arabic-large {
        font-size: 1.5em;
    }
    
    .icg-practice-arabic {
        font-size: 1.5em;
    }
    
    .icg-sidebar-widget {
        padding: 20px;
    }
}

/* Core Beliefs Section */
.icg-core-beliefs-section {
    margin: 25px 0;
    text-align: center;
}

.icg-toggle-core-beliefs {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff) !important;
    color: #1976d2 !important;
    border: 2px solid #bbdefb !important;
}

.icg-toggle-core-beliefs:hover {
    background: linear-gradient(135deg, #bbdefb, #e3f2fd) !important;
    color: #0d47a1 !important;
}

.icg-core-beliefs-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
    margin-top: 15px;
}

.icg-core-beliefs-content h4 {
    color: #1b5e20;
    margin: 0 0 20px 0;
    font-size: 1.3em;
    text-align: center;
}

.icg-beliefs-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.icg-beliefs-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    list-style: none !important;
    list-style-type: none !important;
    position: relative;
}

.icg-beliefs-list li:before {
    content: none !important;
}

.icg-beliefs-list li:hover {
    transform: translateX(5px);
}

.icg-beliefs-list li strong {
    color: #1b5e20;
}

/* Core Beliefs Section - Override theme list styles */
.icg-core-beliefs-content .icg-beliefs-list,
.icg-core-beliefs-content ul.icg-beliefs-list,
div.icg-core-beliefs-content .icg-beliefs-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.icg-core-beliefs-content .icg-beliefs-list li,
.icg-core-beliefs-content ul.icg-beliefs-list li,
div.icg-core-beliefs-content .icg-beliefs-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    list-style: none !important;
    list-style-type: none !important;
    position: relative;
    padding-left: 15px !important;
    margin-left: 0 !important;
}

.icg-core-beliefs-content .icg-beliefs-list li:before,
.icg-core-beliefs-content ul.icg-beliefs-list li:before,
div.icg-core-beliefs-content .icg-beliefs-list li:before {
    content: none !important;
    display: none !important;
}

.icg-core-beliefs-content .icg-beliefs-list li:after,
.icg-core-beliefs-content ul.icg-beliefs-list li:after,
div.icg-core-beliefs-content .icg-beliefs-list li:after {
    content: none !important;
    display: none !important;
}

.icg-core-beliefs-content .icg-beliefs-list li:hover {
    transform: translateX(5px);
}

.icg-core-beliefs-content .icg-beliefs-list li strong {
    color: #1b5e20;
} 