/* ============================================
   WEBSITE CSS - External Stylesheet
   All website styles consolidated here
   ============================================ */

:root {
    /* Primary Colors */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    
    /* Section Color Combinations */
    --section-1-bg: #ffffff;
    --section-1-text: #1e293b;
    --section-1-accent: #667eea;
    
    --section-2-bg: #f8fafc;
    --section-2-text: #1e293b;
    --section-2-accent: #10b981;
    
    --section-3-bg: #ffffff;
    --section-3-text: #1e293b;
    --section-3-accent: #f59e0b;
    
    --section-4-bg: #f0f9ff;
    --section-4-text: #1e293b;
    --section-4-accent: #06b6d4;
    
    --section-5-bg: #fefce8;
    --section-5-text: #1e293b;
    --section-5-accent: #eab308;
    
    --section-6-bg: #fdf4ff;
    --section-6-text: #1e293b;
    --section-6-accent: #d946ef;
    
    --section-7-bg: #f5f5f5;
    --section-7-text: #1e293b;
    --section-7-accent: #64748b;
    
    --section-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --section-gradient-2: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --section-gradient-3: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --section-gradient-4: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --section-gradient-5: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 50px;
    margin-right: 0.75rem;
}

.navbar-brand-logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.75rem;
    font-weight: 700;
}

.navbar-brand-logo-fallback {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    text-decoration: none;
}

/* Desktop button alignment */
.navbar-nav .nav-item .btn,
.navbar-nav .nav-item .btn-primary-custom,
.navbar-nav .nav-item .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    vertical-align: middle;
}

/* Ensure buttons align properly on desktop */
@media (min-width: 768px) {
    .navbar-nav .nav-item.ms-2 .btn,
    .navbar-nav .nav-item.ms-2 .btn-primary-custom,
    .navbar-nav .nav-item.ms-3 .btn,
    .navbar-nav .nav-item.ms-3 .btn-outline-primary {
        display: inline-flex;
        align-items: center;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    height: 48px;
    box-sizing: border-box;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-section.section-light {
    background: #f8fafc;
}

.testimonials-section.section-info {
    background: #f0f9ff;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Owl Carousel Customization */
.testimonials-carousel .owl-nav {
    margin-top: 2rem;
    text-align: center;
}

.testimonials-carousel .owl-nav button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.testimonials-carousel .owl-nav button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.testimonials-carousel .owl-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }

    .testimonials-section {
        padding: 3rem 0;
    }
}

/* ============================================
   PRE-FOOTER SECTION
   ============================================ */
.pre-footer-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pre-footer-section .d-flex {
    align-items: center;
}

.pre-footer-section .d-flex a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    height: 48px;
    justify-content: center;
}

.pre-footer-section .btn-outline-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.pre-footer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pre-footer-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.pre-footer-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.pre-footer-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pre-footer-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pre-footer-stat-icon i {
    font-size: 1.25rem;
    color: white;
}

.pre-footer-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pre-footer-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pre-footer-title {
        font-size: 1.5rem;
    }

    .pre-footer-text {
        font-size: 1rem;
    }

    .pre-footer-stat-number {
        font-size: 1.5rem;
    }
}

.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer a:hover {
    color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: white;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-bg-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-icon-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.hero-icon {
    font-size: 8rem;
    opacity: 0.8;
}

/* ============================================
   PAGE HERO STYLES (for inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
    /* margin-bottom: 3rem; */
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SECTION COLOR COMBINATIONS
   ============================================ */
.section-white {
    background: #ffffff;
    color: var(--text-dark);
}

.section-light {
    background: #f8fafc;
    color: var(--text-dark);
}

.section-primary {
    background: var(--section-gradient-1);
    color: white;
}

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

.section-success {
    background: var(--section-gradient-2);
    color: white;
}

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

.section-info {
    background: #f0f9ff;
    color: var(--text-dark);
}

.section-info-gradient {
    background: var(--section-gradient-3);
    color: white;
}

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

.section-warning {
    background: #fefce8;
    color: var(--text-dark);
}

.section-warning-gradient {
    background: var(--section-gradient-4);
    color: white;
}

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

.section-purple {
    background: #fdf4ff;
    color: var(--text-dark);
}

.section-purple-gradient {
    background: var(--section-gradient-5);
    color: white;
}

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

.section-gray {
    background: #f5f5f5;
    color: var(--text-dark);
}


/* Section padding adjustments */
.section-white,
.section-light,
.section-info,
.section-warning,
.section-purple,
.section-gray {
    padding: 4rem 0;
}

.section-primary,
.section-success,
.section-info-gradient,
.section-warning-gradient,
.section-purple-gradient {
    padding: 4rem 0;
}

/* Section accent border positioning */
.section-accent-primary,
.section-accent-success,
.section-accent-info,
.section-accent-warning,
.section-accent-purple {
    position: relative;
}

.section-accent-primary::before,
.section-accent-success::before,
.section-accent-info::before,
.section-accent-warning::before,
.section-accent-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.section-accent-success::before {
    background: var(--success-color);
}

.section-accent-info::before {
    background: #06b6d4;
}

.section-accent-warning::before {
    background: #f59e0b;
}

.section-accent-purple::before {
    background: #d946ef;
}

/* ============================================
   FEATURE CARD STYLES
   ============================================ */
.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

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

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

.feature-icon-wrapper.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-wrapper.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon-wrapper.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-icon-wrapper.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.feature-icon-wrapper.info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon-wrapper.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-icon-wrapper.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.feature-card-small .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
}

.feature-card-small .feature-icon {
    font-size: 1.5rem;
}

.feature-card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.feature-card-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   PRICING CARD STYLES
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.pricing-card-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.pricing-card.popular .pricing-card-header {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing-card.popular .plan-name {
    color: #667eea;
}

.plan-price-container {
    margin: 1.5rem 0;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plan-price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

.plan-price-original {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.75rem;
}

.plan-price-discount {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.plan-period {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-card-body {
    padding: 2rem;
    flex: 1;
}

.plan-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.plan-features li {
    padding: 0.625rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-icon.included {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
}

.feature-icon.excluded {
    background: #f1f5f9;
    color: #cbd5e1;
    border-radius: 50%;
    font-size: 0.65rem;
}

.feature-text {
    flex: 1;
    color: #334155;
    font-size: 0.875rem;
    line-height: 1.4;
}

.feature-text.excluded {
    color: #94a3b8;
    text-decoration: line-through;
}

.pricing-card-footer {
    padding: 0 2rem 2rem;
}

.btn-select-plan {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

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

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

.btn-select-plan.secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-select-plan.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: white;
}

/* ============================================
   BLOG CARD STYLES
   ============================================ */
.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.5;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-views {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT CARD STYLES
   ============================================ */
.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
}

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

.contact-card-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-card-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card-text {
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   CTA SECTION STYLES
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   STATS SECTION STYLES
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   VALUE CARD STYLES
   ============================================ */
.value-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-card-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.value-card-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.value-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card-text {
    color: var(--text-muted);
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   BLOG DETAIL STYLES
   ============================================ */
.blog-detail-image {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.blog-content-area {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    white-space: pre-wrap;
}

.blog-excerpt-area {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.blog-divider {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* ============================================
   MISSION & CONTENT SECTIONS
   ============================================ */
.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-icon-container {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 3rem;
}

.mission-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   EMPTY STATE STYLES
   ============================================ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.empty-state-title {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--text-muted);
}

/* ============================================
   ACCORDION STYLES
   ============================================ */
.faq-accordion-item {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler-icon i {
    color: var(--text-dark);
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        border-radius: 0.5rem;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
/* ============================================
   HOME PAGE PRICING GRID STYLES
   ============================================ */
.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.home-pricing-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.home-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.home-pricing-card.popular {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.home-pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.home-popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.home-pricing-card-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.home-pricing-card.popular .home-pricing-card-header {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.home-plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.home-pricing-card.popular .home-plan-name {
    color: #667eea;
}

.home-plan-price-container {
    margin: 1.5rem 0;
}

.home-plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.home-plan-price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

.home-plan-price-original {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.75rem;
}

.home-plan-price-discount {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.home-plan-period {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.home-pricing-card-body {
    padding: 2rem;
    flex: 1;
}

.home-plan-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.home-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.home-plan-features li {
    padding: 0.625rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.home-plan-features li:last-child {
    border-bottom: none;
}

.home-features-more {
    padding-top: 0.5rem;
    border-bottom: none;
}

.home-features-more-text {
    font-size: 0.8rem;
}

.home-feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.home-feature-icon.included {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
}

.home-feature-text {
    flex: 1;
    color: #334155;
    font-size: 0.875rem;
    line-height: 1.4;
}

.home-pricing-card-footer {
    padding: 0 2rem 2rem;
}

.home-btn-select-plan {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

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

.home-btn-select-plan.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.home-btn-select-plan.secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.home-btn-select-plan.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: white;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    /* Navbar Mobile Styles */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-brand-logo-text {
        font-size: 1.5rem;
    }

    .navbar-brand-logo-fallback {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: white;
        border-radius: 0.5rem;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0;
        width: 100%;
        text-align: left;
        border-radius: 0.5rem;
    }

    .navbar-nav .nav-item.ms-2,
    .navbar-nav .nav-item.ms-3 {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: 100%;
    }

    .navbar-nav .nav-item.ms-3:first-of-type {
        margin-top: 0.5rem;
    }

    .navbar-nav .btn,
    .navbar-nav .btn-primary-custom,
    .navbar-nav .btn-outline-primary {
        width: 100%;
        margin: 0;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
        min-height: 44px;
        height: 48px;
        box-sizing: border-box;
    }

    /* Ensure buttons are same height and aligned */
    .navbar-nav .btn-primary-custom,
    .navbar-nav .btn-outline-primary {
        height: 48px;
        line-height: 1.5;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer .row {
        margin: 0;
    }

    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-md-6 {
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer .col-lg-3:last-child,
    .footer .col-lg-2:last-child,
    .footer .col-md-6:last-child {
        margin-bottom: 1rem;
    }

    .footer h5 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer ul.list-unstyled {
        text-align: center;
    }

    .footer ul.list-unstyled li {
        margin-bottom: 0.75rem;
    }

    .footer ul.list-unstyled a {
        font-size: 0.9rem;
        display: inline-block;
    }

    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .footer-bottom .d-flex {
        flex-direction: column;
        gap: 1rem !important;
        align-items: center;
    }

    .footer-bottom p {
        margin-bottom: 1rem;
        font-size: 0.875rem;
        line-height: 1.5;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-bottom .d-flex.flex-column.flex-md-row {
        gap: 1.5rem !important;
    }

    .footer-bottom .d-flex.flex-column {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center;
        width: 100%;
    }

    .footer-bottom .d-flex.flex-column .footer-link {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        display: block;
        white-space: nowrap;
        width: 100%;
        text-align: center;
        line-height: 1.5;
    }

    .footer-bottom .text-muted {
        display: none;
    }

    .footer .d-flex.gap-3 {
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        display: flex !important;
    }

    .footer-social-link {
        font-size: 1.25rem;
        margin: 0 0.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }

    .pre-footer-section {
        padding: 2rem 0;
    }

    .pre-footer-section .row {
        text-align: center;
    }

    .pre-footer-title {
        font-size: 1.5rem;
    }

    .pre-footer-text {
        font-size: 0.9rem;
    }

    .pre-footer-section .d-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .pre-footer-section .d-flex a {
        width: 100%;
        max-width: 300px;
    }

    /* Hero and Content Mobile Styles */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        font-size: 5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid,
    .home-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .stats-label {
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.125rem;
    }

    .navbar-brand-logo-text {
        font-size: 1.25rem;
    }

    .navbar-brand-logo-fallback {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
        margin-right: 0.375rem;
    }

    .navbar-nav .nav-link {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer ul.list-unstyled a {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 1rem;
        padding: 0 0.75rem;
    }

    .footer-bottom .d-flex.flex-column.flex-md-row {
        gap: 1.25rem !important;
    }

    .footer-bottom .d-flex.flex-column {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center;
        width: 100%;
    }

    .footer-bottom .d-flex.flex-column .footer-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        display: block;
        white-space: nowrap;
        width: 100%;
        text-align: center;
        line-height: 1.5;
    }

    .footer .d-flex.gap-3 {
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        display: flex !important;
    }

    .footer-social-link {
        font-size: 1.125rem;
        margin: 0 0.375rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        min-height: 40px;
    }

    .pre-footer-title {
        font-size: 1.25rem;
    }

    .pre-footer-text {
        font-size: 0.85rem;
    }
}
