/* GEO-TARGETED PRICING SECTION STYLES */
.pricing-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    border-radius: 16px;
    margin: 3rem auto;
    max-width: 1200px;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #3b82f6;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.price-card.india { border-top-color: #10b981; }
.price-card.usa { border-top-color: #ef4444; }
.price-card.uk { border-top-color: #3b82f6; }
.price-card.other { border-top-color: #8b5cf6; }

.region-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 1rem 0;
}

.price-card p {
    color: #64748b;
    font-size: 0.95rem;
}

.cta-primary {
    background: linear-gradient(90deg, #00353b 0%, #006d75 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 53, 59, 0.3);
}

.pricing-note {
    color: #475569;
    font-size: 0.95rem;
}

/* GLOBAL BENEFITS STYLES */
.global-benefits {
    padding: 4rem 1rem;
    background: white;
}

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

.benefit-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #00353b;
}

/* TESTIMONIAL STYLES */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.testimonial-flag {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ENTITY GLOSSARY STYLES */
.entity-glossary {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.entity-glossary dt {
    font-weight: 700;
    color: #00353b;
    margin-top: 1rem;
}

.entity-glossary dd {
    margin-left: 1rem;
    color: #475569;
}

/* STRUCTURED LISTS */
.structured-list {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.structured-list ul {
    list-style: none;
    padding-left: 0;
}

.structured-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.structured-list li:before {
    content: '📌';
    margin-right: 12px;
    font-size: 1.1rem;
}

/* MARKET STATS */
.market-stats {
    background: linear-gradient(135deg, #00353b 0%, #006d75 100%);
    color: white;
    padding: 3rem 1rem;
    border-radius: 16px;
    margin: 3rem auto;
    max-width: 1200px;
}

.market-stats h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.market-stats ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.market-stats li {
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* COMPARISON TABLE */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    margin: 3rem 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:first-child {
    background: #f1f5f9;
    font-weight: bold;
}

.comparison-label,
.comparison-col {
    padding: 1.5rem;
}

.comparison-col.highlight {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
}

/* CURRICULUM TIMELINE */
.curriculum-timeline {
    border-left: 3px solid #00353b;
    margin-left: 1rem;
    padding-left: 2rem;
}

.week-module {
    margin-bottom: 3rem;
    position: relative;
}

.week-number {
    position: absolute;
    left: -2.5rem;
    top: 0;
    background: #00353b;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.week-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

/* FAQ SECTION */
.faq-section {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px; /* Approximate max height */
    padding-bottom: 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
}

.success-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 250px;
}

.achievement-badges {
    display: flex;
    gap: 1rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.growth-chart {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 200px;
}

.chart-bars {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    height: 100px;
    margin-top: 1rem;
}

.bar {
    width: 40px;
    background: linear-gradient(to top, #3b82f6, #8b5cf6);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.bar-label {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

/* DIRECT ANSWER */
.direct-answer {
    font-size: 1.2rem;
    line-height: 1.7;
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    border-left: 4px solid #0ea5e9;
}

.salary-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fefce8;
    border-radius: 1rem;
}

.salary-country {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.salary-country h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.salary-range {
    font-weight: 700;
    color: #059669;
    font-size: 1.1rem;
}
