/* Digital Marketing Page CSS */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
    overflow-x: hidden;
}

.digital-marketing-page {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid #667eea;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 3rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 15%;
    animation-delay: -4s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 80%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Urgent Banner */
.urgent-banner {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.urgent-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.urgent-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: white;
}

.urgent-icon {
    font-size: 1.5rem;
}

.urgent-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.urgent-btn {
    background: white;
    color: #dc2626;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.urgent-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

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

/* Curriculum Section */
.curriculum-section {
    padding: 5rem 0;
    background: white;
}

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

.module-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

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

.module-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.module-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.module-topics {
    list-style: none;
    padding: 0;
}

.module-topics li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #475569;
    position: relative;
}

.module-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Careers Section */
.careers-section {
    padding: 5rem 0;
    background: white;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.career-category {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.career-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.career-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.career-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #475569;
    position: relative;
}

.career-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.salary-range {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
    background: #1a202c;
    color: white;
}

.tools-section .section-title {
    color: white;
}

.tools-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.tool-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tool-category:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.tool-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.achievement {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Program Section */
.program-section {
    padding: 5rem 0;
    background: white;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.program-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid #667eea;
    transition: all 0.3s ease;
}

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

.program-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.program-card li {
    padding: 0.5rem 0;
    color: #475569;
}

.highlight-text {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    margin: 0.5rem 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: white;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.price-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-main {
    margin-bottom: 1rem;
}

.price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 1rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
}

.price-save {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.price-includes h4,
.payment-options h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    text-align: left;
}

.price-includes ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-includes li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.payment-plans {
    text-align: left;
}

.plan {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.pricing-card .btn {
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fbbf24;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0 3rem;
}

.final-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
}

.final-stat strong {
    color: #fbbf24;
    display: block;
    margin-bottom: 0.25rem;
}

.final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: #f8fafc;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item svg {
    width: 30px;
    height: 30px;
    color: #667eea;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #764ba2;
}

.contact-item p {
    color: #1a202c;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .curriculum-grid,
    .features-grid,
    .careers-grid,
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 5rem 0 3rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .urgent-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .intro-section,
    .curriculum-section,
    .features-section,
    .careers-section,
    .tools-section,
    .testimonials-section,
    .program-section,
    .pricing-section,
    .faq-section,
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .curriculum-grid,
    .features-grid,
    .careers-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .final-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .module-card,
    .feature-card,
    .career-category,
    .tool-category,
    .testimonial-card,
    .program-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .module-title,
    .category-title {
        font-size: 1.1rem;
    }
    
    .highlight-card h3,
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .urgent-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 0.6rem;
    }
    
    .module-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .highlight-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }
    
    .module-card:hover,
    .feature-card:hover,
    .career-category:hover,
    .testimonial-card:hover,
    .faq-item:hover {
        transform: none;
    }
    
    .module-card:active,
    .feature-card:active,
    .career-category:active,
    .testimonial-card:active,
    .faq-item:active {
        transform: scale(0.98);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-card,
.feature-card,
.career-category,
.testimonial-card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.module-card:nth-child(1),
.feature-card:nth-child(1),
.career-category:nth-child(1),
.testimonial-card:nth-child(1),
.faq-item:nth-child(1) { animation-delay: 0.1s; }

.module-card:nth-child(2),
.feature-card:nth-child(2),
.career-category:nth-child(2),
.testimonial-card:nth-child(2),
.faq-item:nth-child(2) { animation-delay: 0.2s; }

.module-card:nth-child(3),
.feature-card:nth-child(3),
.career-category:nth-child(3),
.testimonial-card:nth-child(3),
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.module-card:nth-child(4),
.feature-card:nth-child(4),
.career-category:nth-child(4),
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.module-card:nth-child(5),
.feature-card:nth-child(5),
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.module-card:nth-child(6),
.feature-card:nth-child(6),
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.module-card:nth-child(7) { animation-delay: 0.7s; }
.module-card:nth-child(8) { animation-delay: 0.8s; }

/* Focus styles for accessibility */
.btn:focus,
.contact-item a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

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

/* Print styles */
@media print {
    .hero-section,
    .urgent-banner,
    .final-cta-section {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        display: none;
    }
}