/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.brand-name {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1em;
    letter-spacing: -0.5px;
}

/* Brand name in dark/hero sections */
.hero .brand-name,
.footer .brand-name {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 80px;
    width: auto;
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.tagline {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.special-link {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

.special-link:hover {
    color: var(--accent-color) !important;
}

.btn-our-fee {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-our-fee:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .logo-image {
        height: 60px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.75rem;
    }
}

/* China-Focused Hero Section */
.china-hero {
    background: linear-gradient(135deg, #c8102e 0%, #003d7a 100%);
}

/* Downloads Section Layout */
.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.download-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.download-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.download-header-row h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.download-details-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
    .downloads-grid {
        gap: 1.2rem;
    }
    .download-card {
        padding: 1.2rem;
    }
    .download-header-row h3 {
        font-size: 1.1rem;
    }
}

.china-hero .hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto;
}

.china-hero .hero-features p {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* China Focus Banner */
.china-focus {
    background: linear-gradient(135deg, #fff5e6, #ffe4cc);
    border-bottom: 3px solid #c8102e;
}

.china-focus .badge {
    background: #c8102e;
}

.china-focus .banner-content {
    text-align: center;
    display: block;
}

.china-focus h2 {
    color: #003d7a;
    margin-bottom: 0.8rem;
}

.china-focus p {
    color: var(--text-dark);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    text-align: center;
}

.iepp-hero {
    background: linear-gradient(135deg, #c8102e, #003d7a);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100L50 100L100 50L50 0Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-highlight {
    background: var(--accent-color);
    color: var(--text-dark);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-features p {
    font-size: 0.95rem;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
}

.btn-accent:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Featured Banner */
.featured-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem 0;
    border-bottom: 3px solid var(--accent-color);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.badge {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.banner-text h2 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.banner-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Academic Trust Section */
.academic-trust-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.academic-trust-section .section-header {
    margin-bottom: 2rem;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.profile-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 4px solid var(--primary-color);
}

.profile-image-secondary {
    border: 3px solid var(--accent-color) !important;
}

.profile-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.profile-credentials {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.profile-credentials strong {
    color: var(--primary-color);
    font-weight: 600;
}

.profile-quote {
    background: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-style: italic;
}

.profile-quote p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.insider-advantage {
    margin-top: 3rem;
}

.insider-advantage h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Academic Trust Section */
@media (max-width: 768px) {
    .trust-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .profile-info h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .profile-credentials {
        text-align: center;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.highlight {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.service-list {
    list-style: none;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-countries {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-countries small {
    color: var(--text-light);
    font-weight: 500;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--text-light);
}

/* Expertise Section */
.expertise-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.expertise-section h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.expertise-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.expertise-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.process-step:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
}

/* About Message Box */
.about-message {
    width: 100%;
    margin: 3rem 0 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    padding: 4rem 2.5rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-left: none;
    border-right: none;
}

.about-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.about-message p {
    color: var(--primary-color);
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-message p:first-child {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.about-message p strong {
    font-weight: 700;
    text-shadow: none;
}

.about-message p:last-child {
    font-size: 1.5rem;
    opacity: 0.9;
    font-style: italic;
    color: var(--text-dark);
}

/* Quick Info (IEPP Page) */
.quick-info {
    background: var(--bg-light);
    padding: 2rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Fudan Section */
.about-fudan {
    padding: 5rem 0;
    background: white;
}

.fudan-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.fudan-intro h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.university-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 10px;
}

.stat-item h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

/* IEPP Details */
.iepp-details {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.iepp-details h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.iepp-details > p {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.highlight-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.program-card.featured {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.program-duration {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.program-content h4 {
    color: var(--secondary-color);
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.program-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.program-content li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.program-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.program-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* IEPP Services Timeline */
.iepp-services {
    padding: 5rem 0;
    background: white;
}

.services-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 30px);
    background: var(--border-color);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.timeline-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.deadline-box {
    max-width: 900px;
    margin: 0 auto;
}

.urgent-notice {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #ef4444;
    margin-bottom: 3rem;
    text-align: center;
}

.urgent-notice h3 {
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.urgent-notice p {
    color: #7f1d1d;
    font-size: 1.05rem;
}

.timeline-info {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-phase {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.timeline-phase h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-phase ul {
    list-style: none;
}

.timeline-phase li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.timeline-phase li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Why Documents Wise IEPP */
.why-documents-wise {
    padding: 5rem 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.advantage-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.adv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50px;
    font-size: 400px;
    color: rgba(30, 64, 175, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonials-section .section-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.testimonials-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 15px 15px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
}

.quote-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    filter: grayscale(20%);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.testimonial-text::before {
    content: open-quote;
    font-size: 4rem;
    position: absolute;
    left: -15px;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-location {
    color: var(--text-light);
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
}

/* Add star rating option (optional enhancement) */
.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating::before {
    content: '⭐⭐⭐⭐⭐';
    color: #fbbf24;
    font-size: 1.1rem;
}

/* Homepage Blog Section */
.homepage-blog-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.homepage-blog-section .section-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.homepage-blog-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 3rem;
}

.blog-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 60px;
}

.blog-carousel {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.blog-carousel-item {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 0;
}

.blog-carousel-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-carousel-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
}

.blog-carousel-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-carousel-link:hover .blog-carousel-image img {
    transform: scale(1.1);
}

.blog-carousel-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(30, 64, 175, 0.95);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.blog-carousel-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-carousel-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-carousel-date::before {
    content: '📅 ';
    margin-right: 0.3rem;
}

.blog-carousel-read-time::before {
    content: '⏱ ';
    margin-right: 0.3rem;
}

.blog-carousel-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-carousel-link:hover h3 {
    color: var(--primary-color);
}

.blog-carousel-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--text-light);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.blog-cta .btn:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* Responsive Design for Blog Carousel */
@media (max-width: 1200px) {
    .blog-carousel-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .homepage-blog-section {
        padding: 3rem 0;
    }
    
    .blog-carousel-wrapper {
        padding: 0 50px;
    }
    
    .blog-carousel-item {
        flex: 0 0 100%;
    }
    
    .blog-carousel-track {
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .homepage-blog-section .section-header h2 {
        font-size: 2rem;
    }
    
    .blog-carousel-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0.2rem 0;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.office-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.office-hours h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-hours p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.urgent-cta {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.urgent-cta p {
    color: var(--text-dark);
    margin: 0.3rem 0;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    border: none;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Back Link Section */
.back-link-section {
    padding: 2rem 0;
    background: var(--bg-light);
    text-align: center;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

.legal-notice {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Footer Legal Block with Disclaimer */
.footer-legal-block {
    margin-top: 1.5rem;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-legal-block h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #fff;
}

.footer-services {
    font-style: italic;
    font-size: 13px;
    color: #bbb;
    margin-bottom: 0.5rem;
}

.footer-disclaimer-box {
    margin-top: 10px;
}

.footer-disclaimer-box summary {
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    list-style: none;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    border: 2px solid transparent;
}

.footer-disclaimer-box summary:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    transform: translateY(-1px);
}

.footer-disclaimer-box summary::-webkit-details-marker {
    display: none;
}

.footer-disclaimer-box summary::after {
    content: " ▼";
    font-size: 11px;
    margin-left: 5px;
}

.footer-disclaimer-box[open] summary {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4);
}

.footer-disclaimer-box[open] summary::after {
    content: " ▲";
}

.footer-disclaimer-en,
.footer-disclaimer-ur {
    margin-top: 8px;
    font-size: 12.5px;
    color: #aaa;
    line-height: 1.7;
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border-left: 3px solid var(--accent-color);
}

.footer-disclaimer-ur {
    text-align: right;
    border-left: none;
    border-right: 3px solid var(--accent-color);
    font-family: 'Jameel Noori Nastaleeq', 'Noto Nastalikh Urdu', Arial, sans-serif;
    line-height: 2;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .programs-grid,
    .why-grid,
    .advantages-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-item::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }

    .service-card,
    .program-card,
    .why-card {
        padding: 1.5rem;
    }
}
/* ===========================
   BLOG STYLES
   =========================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.blog-hero-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Blog Grid Section */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-date::before {
    content: ' ';
}

.blog-read-time::before {
    content: ' ';
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-author {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.author-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.author-contact:hover {
    color: var(--accent-color);
}

.blog-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-color);
}

/* Newsletter Section */
.blog-newsletter {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-newsletter p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Blog Post Page Styles */
.blog-post-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.2;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.blog-category-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-post-date,
.blog-post .blog-read-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.blog-post-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-post-author .author-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-links {
    display: flex;
    gap: 1rem;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: var(--accent-color);
}

/* Blog Post Content */
.blog-post-content {
    background: white;
    padding: 4rem 0;
}

.blog-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    font-style: italic;
}

.blog-intro {
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.blog-content-wrapper h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.blog-content-wrapper h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-content-wrapper h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.blog-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.blog-content-wrapper strong {
    font-weight: 600;
    color: var(--primary-color);
}

.blog-list {
    margin: 1.5rem 0 2rem 1.5rem;
    line-height: 1.8;
}

.blog-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.blog-highlight-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.blog-highlight-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-highlight-box p {
    margin-bottom: 0;
}

.blog-image-wrapper {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-checklist {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.checklist-item {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.blog-timeline {
    margin: 2.5rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: var(--border-color);
}

.timeline-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
    color: var(--text-dark);
}

.blog-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card h4 {
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.stat-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.service-item {
    background: #f0fdf4;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--success-color);
    font-size: 1rem;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.blog-cta-box h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 2rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.blog-cta-box strong {
    color: white;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-share {
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin: 3rem 0;
    text-align: center;
}

.blog-share h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0a66c2; }

.related-posts {
    margin: 3rem 0;
}

.related-posts h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .blog-hero { padding: 5rem 0 3rem; }
    .blog-hero-title { font-size: 2rem; }
    .blog-hero-subtitle { font-size: 1.1rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post-header { padding: 5rem 0 3rem; }
    .blog-post-title { font-size: 2rem; }
    .blog-content-wrapper h2 { font-size: 1.6rem; }
    .blog-content-wrapper h3 { font-size: 1.3rem; }
    .lead-paragraph { font-size: 1.1rem; }
    .blog-content-wrapper p { font-size: 1rem; }
    .newsletter-form { flex-direction: column; }
    .blog-stats-grid { grid-template-columns: 1fr; }
    .blog-services-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .related-posts-grid { grid-template-columns: 1fr; }
    .timeline-marker { width: 40px; height: 40px; font-size: 1rem; }
    .timeline-item:not(:last-child)::before { left: 19px; }
}

@media (max-width: 480px) {
    .blog-post-meta { flex-direction: column; gap: 0.8rem; }
    .author-links { flex-direction: column; gap: 0.5rem; }
    .blog-cta-box { padding: 2rem 1.5rem; }
    .blog-newsletter { padding: 2rem 1.5rem; }
}

/* Author Styling Updates */
.author-icon {
    color: var(--text-light);
    margin-right: 0.2rem;
    vertical-align: middle;
}

.blog-author .author-name {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.blog-author .author-name:hover {
    color: var(--primary-color);
}

.blog-author .author-name strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-author .author-name em {
    font-style: italic;
    font-weight: normal;
    color: var(--text-light);
}

.blog-post-author .author-name {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.blog-post-author .author-name:hover {
    opacity: 0.8;
}

.blog-post-author .author-name strong {
    font-weight: 600;
}

.blog-post-author .author-name em {
    font-style: italic;
    font-weight: normal;
    opacity: 0.9;
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

/* Logo Section with Pricing Button */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-pricing-header {
    display: inline-flex !important;
    align-items: center;
    background: #1e40af;
    color: white !important;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-pricing-header:hover {
    background: #1e3a8a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="white" opacity="0.05"/></svg>');
    background-size: 50px 50px;
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.pricing-hero .subtitle {
    font-size: 1.4rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-hero .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Download Banner */
.pricing-download-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.download-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.download-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.download-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #f59e0b !important;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ea580c !important;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #1e40af;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 15px 45px rgba(30, 64, 175, 0.3);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pricing-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.premium {
    background: #1e40af;
}

.pricing-badge.elite {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.pricing-amount {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-amount .price {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 0.3rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* Additional Services */
.additional-services {
    margin: 5rem 0;
    text-align: center;
}

.additional-services h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Payment Terms */
.payment-terms {
    margin: 5rem 0;
}

.payment-terms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.term-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.term-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.term-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.term-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-block;
    background: #fbbf24;
    color: #1e40af !important;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary-cta:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary-cta {
    display: inline-block;
    background: white;
    color: #1e40af !important;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary-cta:hover {
    background: transparent;
    color: white !important;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .logo-section {
        gap: 0.7rem;
    }

    .btn-pricing-header {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    .pricing-hero {
        padding: 4rem 0 3rem;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero .subtitle {
        font-size: 1.1rem;
    }

    .pricing-hero .description {
        font-size: 1rem;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-intro h2,
    .additional-services h2,
    .payment-terms h2 {
        font-size: 2rem;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        text-align: center;
    }

    .pricing-cta h2 {
        font-size: 1.8rem;
    }

    .pricing-cta p {
        font-size: 1rem;
    }

    .trust-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .btn-pricing-header {
        width: 100%;
        justify-content: center;
    }
}
