/* Article Page Styles */

/* Article Header */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
}

.article-email-capture {
    max-width: 500px;
}

.article-waitlist-form .form-group {
    flex-direction: column;
    gap: 1rem;
}

.article-waitlist-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 20px;
}

.article-waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.article-waitlist-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.article-waitlist-form .btn-primary {
    background: white;
    color: #667eea;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.article-waitlist-form .form-note {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.article-section h3 {
    font-size: 1.5rem;
    color: #444;
    margin: 2rem 0 1rem;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.info-box h3 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.info-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Alphabet Table */
.alphabet-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.alphabet-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alphabet-table th {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.alphabet-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.alphabet-table tr:hover {
    background: #f8f9fa;
}

.gujarati-letter {
    font-size: 2rem;
    font-weight: 600;
    color: #667eea;
    display: block;
    text-align: center;
}

/* Consonant Groups */
.consonant-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.consonant-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.consonant-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.consonant-card .gujarati-letter {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.consonant-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.pronunciation {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Conjuncts Grid */
.conjuncts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.conjunct-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.conjunct-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.conjunct-card .gujarati-letter {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.conjunct-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.components {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Exercise Boxes */
.exercise-box {
    background: white;
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.exercise-box h3 {
    color: #667eea;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.practice-letters {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.practice-letters .gujarati-letter {
    font-size: 2rem;
    margin: 0 0.5rem;
}

.word-practice {
    margin: 1rem 0;
}

.word-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    align-items: center;
}

.gujarati-word {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.transliteration {
    font-style: italic;
    color: #666;
}

.meaning {
    color: #333;
    font-weight: 500;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.article-cta-form {
    max-width: 400px;
    margin: 0 auto;
}

.article-cta-form .form-group {
    flex-direction: column;
    gap: 1rem;
}

.article-cta-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
}

.article-cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.article-cta-form .btn-primary {
    background: white;
    color: #667eea;
}

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

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.related-articles {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 1rem;
}

.related-articles a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.related-articles a:hover {
    color: #667eea;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    padding: 1rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: #667eea;
}

.sidebar-newsletter-form .btn-secondary {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sidebar-newsletter-form .btn-secondary:hover {
    background: #5a6fd8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-content {
        padding: 2rem;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .consonant-group {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .conjuncts-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .word-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 100px 0 40px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .main-content {
        padding: 1.5rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .consonant-card,
    .conjunct-card {
        padding: 1rem;
    }

    .consonant-card .gujarati-letter {
        font-size: 2rem;
    }

    .practice-letters .gujarati-letter {
        font-size: 1.5rem;
        margin: 0 0.2rem;
    }
}

/* Phrase Cards */
.phrase-category {
    margin: 2rem 0;
}

.phrase-category h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.phrase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.phrase-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.phrase-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.gujarati-phrase {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
    text-align: center;
}

.transliteration {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
}

.meaning {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.usage {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

/* Numbers Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.number-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.number-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.gujarati-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.number-name {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.number-value {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

/* Practice Phrases */
.practice-phrases {
    margin: 1rem 0;
}

.practice-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gujarati-practice {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.practice-translation {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Pronunciation Guide Styles */
.pronunciation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sound-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sound-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.gujarati-letter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.transliteration {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pronunciation {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.example {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Consonant Categories */
.consonant-category {
    margin: 2rem 0;
}

.consonant-category h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.consonant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.consonant-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.consonant-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.gujarati-consonant {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Special Sounds */
.special-sounds {
    margin: 2rem 0;
}

.sound-category {
    margin: 2rem 0;
}

.sound-category h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.special-sound-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.special-sound-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.special-sound-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.gujarati-sound {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Stress Patterns */
.stress-patterns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pattern-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.pattern-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.pattern-card ul {
    list-style: none;
    padding: 0;
}

.pattern-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.pattern-card li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Common Mistakes */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mistake-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.mistake-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mistake-card p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.example-pair {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.example-pair span {
    font-weight: 500;
    color: #333;
}

/* Pronunciation Exercises */
.pronunciation-exercises {
    margin: 2rem 0;
}

.practice-pairs {
    margin: 1rem 0;
}

.practice-pair {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Numbers Guide Styles */
.numbers-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.numbers-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.numbers-table th {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.numbers-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e5e9;
    text-align: left;
}

.numbers-table tr:hover {
    background: #f8f9fa;
}

.numbers-table tr:last-child td {
    border-bottom: none;
}

/* Number Patterns */
.number-patterns {
    margin: 2rem 0;
}

.pattern-example {
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.pattern-example h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.pattern-item {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pattern-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.pattern-item span {
    display: block;
    margin-bottom: 0.3rem;
}

.gujarati-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.gujarati-word {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.transliteration {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.english {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Numbers Range */
.numbers-range {
    margin: 2rem 0;
}

.range-section {
    margin: 2rem 0;
}

.range-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.range-item {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.range-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.range-item span {
    display: block;
    margin-bottom: 0.3rem;
}

/* Usage Examples */
.usage-examples {
    margin: 2rem 0;
}

.usage-category {
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.usage-category h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.example-phrases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phrase-example {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: all 0.3s ease;
}

.phrase-example:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gujarati-phrase {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
}

.meaning {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Number Exercises */
.number-exercises {
    margin: 2rem 0;
}

.exercise-items {
    margin: 1rem 0;
}

.exercise-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exercise-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    min-width: 60px;
}

.exercise-input {
    flex: 1;
    padding: 0.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
}

.exercise-input:focus {
    outline: none;
    border-color: #667eea;
}

.counting-practice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.count-item {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.count-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.count-word {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Greetings Guide Styles */
.greetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.greeting-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.greeting-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.gujarati-greeting {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.formality {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Time Greetings */
.time-greetings {
    margin: 2rem 0;
}

.time-category {
    margin: 2rem 0;
}

.time-category h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.time-greeting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.time-greeting-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.time-greeting-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Formality Comparison */
.formality-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.formality-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.formality-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.formality-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formality-example {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: all 0.3s ease;
}

.formality-example:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gujarati-example {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
}

/* Family Greetings */
.family-greetings {
    margin: 2rem 0;
}

.family-category {
    margin: 2rem 0;
}

.family-category h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.family-greeting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.family-greeting-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.family-greeting-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Cultural Context */
.cultural-context {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.context-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.context-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.context-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.context-card ul {
    list-style: none;
    padding: 0;
}

.context-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.context-card li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Greeting Responses */
.greeting-responses {
    margin: 2rem 0;
}

.response-pair {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.greeting, .response {
    flex: 1;
    min-width: 200px;
}

.gujarati-response {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
}

/* Practice Scenarios */
.practice-scenarios {
    margin: 2rem 0;
}

.scenario-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.scenario-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.scenario-dialogue {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dialogue-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.speaker {
    font-weight: 600;
    color: #667eea;
    min-width: 80px;
}

.gujarati-dialogue {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.translation {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Food Vocabulary Styles */
.food-vocabulary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.food-term-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.food-term-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.gujarati-term {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.dish-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dish-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.dish-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.category {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* Ingredients Section */
.ingredients-section {
    margin: 2rem 0;
}

.ingredient-category {
    margin: 2rem 0;
}

.ingredient-category h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.ingredient-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ingredient-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.gujarati-ingredient {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Cooking Methods */
.cooking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.method-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.gujarati-method {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.example {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Meal Phrases */
.meal-phrases {
    margin: 2rem 0;
}

.meal-category {
    margin: 2rem 0;
}

.meal-category h3 {
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.meal-phrase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.meal-phrase-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.meal-phrase-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.time {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Cultural Significance */
.cultural-significance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.significance-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.significance-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.significance-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.significance-card ul {
    list-style: none;
    padding: 0;
}

.significance-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.significance-card li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Food Conversations */
.food-conversations {
    margin: 2rem 0;
}

.conversation-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.conversation-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.conversation-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.conversation-dialogue {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Pronunciation Mistakes Styles */
.mistake-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mistake-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.mistake-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.error-example, .correct-example {
    text-align: center;
}

.gujarati-word {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.incorrect-pronunciation {
    color: #e74c3c;
    font-style: italic;
    font-weight: 500;
}

.correct-pronunciation {
    color: #27ae60;
    font-style: italic;
    font-weight: 500;
}

/* Practice Section */
.practice-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.practice-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Retroflex Mistakes */
.retroflex-mistakes {
    margin: 2rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.comparison-item {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.sound-type {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pronunciation-tip {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Vowel Mistakes */
.vowel-mistakes {
    margin: 2rem 0;
}

.vowel-pairs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.vowel-pair {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.short-vowel, .long-vowel {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.vowel-type {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Stress Mistakes */
.stress-mistakes {
    margin: 2rem 0;
}

.stress-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.stress-example {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stress-example:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.stress-example h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.incorrect-stress {
    color: #e74c3c;
}

.correct-stress {
    color: #27ae60;
}

.word {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stress-pattern {
    font-family: monospace;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.explanation {
    font-size: 0.9rem;
    font-style: italic;
}

/* Stress Rules */
.stress-rules {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.stress-rules h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.stress-rules ul {
    list-style: none;
    padding: 0;
}

.stress-rules li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.stress-rules li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Nasal Mistakes */
.nasal-mistakes {
    margin: 2rem 0;
}

.nasal-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.nasal-example {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.nasal-example:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.nasal-tip {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Nasal Practice */
.nasal-practice {
    margin: 2rem 0;
}

.nasal-practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.nasal-practice-item {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.nasal-practice-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.gujarati-sound {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.pronunciation {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.example {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* Intonation Mistakes */
.intonation-mistakes {
    margin: 2rem 0;
}

.intonation-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.intonation-example {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.intonation-example:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.intonation-example h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.statement-pattern, .question-pattern {
    text-align: center;
}

.gujarati-sentence {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.intonation-pattern {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Practice Exercises */
.practice-exercises {
    margin: 2rem 0;
}

.exercise-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.exercise-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.exercise-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.minimal-pairs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pair {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.word1, .word2 {
    font-weight: 500;
    color: #333;
}

.stress-practice {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stress-word {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Improvement Tips */
.improvement-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.tip-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Print styles */
@media print {
    .article-header {
        background: white;
        color: black;
    }

    .article-sidebar,
    .cta-box,
    .article-email-capture {
        display: none;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .main-content {
        box-shadow: none;
        padding: 0;
    }
} 