/* Gradients */
.gradient-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-light { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); }

/* Spacing */
.section-py { padding: 80px 0; }
.section-py-sm { padding: 60px 0; }

/* Layout */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }

/* Borders */
.rounded-20 { border-radius: 20px; }
.rounded-pill { border-radius: 50px; }

/* Colors */
.text-dark { color: #1e293b; }
.text-gray { color: #4b5563; }
.text-muted { color: #64748b; }
.text-purple { color: #667eea; }
.text-white { color: white; }

/* Typography */
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 700; }

/* Transitions */
.transition { transition: all 0.3s ease; }

/* Cards - ONE UNIFIED CARD CLASS */
.card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

/* Icon */
.icon-80 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    transition: all 0.4s ease;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    width: max-content;
}

/* ==========================================================================
   2. HERO SECTIONS (~60 lines)
   ========================================================================== */

/* Hero Section - Enhanced Design */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.85), rgba(67, 56, 202, 0.8), rgba(51, 65, 85, 0.85));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://img.freepik.com/premium-photo/cityscape-with-wifi-connection-conceptualinformation-communication-technology-concept_1376230-162.jpg?w=2000') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.herob-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.525);
    border-radius: 2px;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.8;
        width: 80px;
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
    }
    50% {
        opacity: 1;
        width: 100px;
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
    }
}

.hero-text {
     font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Blog Detail Hero Variant */
.hero-detail {
    padding: 140px 0 80px;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.9), rgba(67, 56, 202, 0.85), rgba(51, 65, 85, 0.9));
}

.hero-detail::before {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&auto=format&fit=crop&q=80') center/cover;
    opacity: 0.15;
}

/* ==========================================================================
   3. ABOUT PAGE (~120 lines)
   ========================================================================== */

/* Mission Card */
.mission-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-direction: row;
}

.mission-img {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.mission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card:hover .mission-img img { transform: scale(1.08); }

.mission-content {
    flex: 1;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Differentiator Cards (Why Choose Us Section) */
.differentiators-section {
    padding: 80px 0;
    position: relative;
}

.differentiator-card {
    background: white;
    border-radius: 24px;
    padding: 45px 35px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.differentiator-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.differentiator-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.3s ease;
}

.differentiator-card:hover .differentiator-accent {
    height: 8px;
}

.differentiator-accent-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.differentiator-accent-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.differentiator-accent-emerald { background: linear-gradient(90deg, #10b981, #34d399); }
.differentiator-accent-orange { background: linear-gradient(90deg, #f97316, #fb923c); }
.differentiator-accent-indigo { background: linear-gradient(90deg, #6366f1, #818cf8); }
.differentiator-accent-pink { background: linear-gradient(90deg, #ec4899, #f472b6); }

.differentiator-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.differentiator-card:hover .differentiator-glow {
    opacity: 1;
}

.differentiator-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.differentiator-icon-blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; }
.differentiator-icon-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #6d28d9; }
.differentiator-icon-emerald { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.differentiator-icon-orange { background: linear-gradient(135deg, #fed7aa, #fdba74); color: #9a3412; }
.differentiator-icon-indigo { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #3730a3; }
.differentiator-icon-pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #831843; }

/* Light icon variants with maximum brightness and saturation */
.differentiator-icon-orange-light { background: linear-gradient(135deg, #fde047, #facc15); color: #d97706; }
.differentiator-icon-indigo-light { background: linear-gradient(135deg, #c4b5fd, #a78bfa); color: #6d28d9; }
.differentiator-icon-pink-light { background: linear-gradient(135deg, #f9a8d4, #f472b6); color: #be185d; }

.differentiator-card:hover .differentiator-icon {
    transform: scale(1.1) rotate(-5deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.differentiator-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.differentiator-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.differentiator-stat {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.differentiator-card:hover .differentiator-stat {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.stat-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #10b981;
}

.stat-detail i {
    font-size: 0.875rem;
}

.differentiator-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.differentiator-action i {
    transition: transform 0.3s ease;
}

.differentiator-card:hover .differentiator-action {
    color: #764ba2;
}

.differentiator-card:hover .differentiator-action i {
    transform: translateX(5px);
}

/* Trust Indicators */
.differentiators-trust {
    margin-top: 60px;
}

.trust-indicators {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-indicator-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.trust-indicator-icon-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.trust-indicator-icon-emerald { background: linear-gradient(135deg, #10b981, #34d399); }
.trust-indicator-icon-orange { background: linear-gradient(135deg, #f97316, #fb923c); }

.trust-indicator-content {
    text-align: left;
}

.trust-indicator-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.trust-indicator-subtitle {
    font-size: 0.875rem;
    color: #64748b;
}

.trust-indicator-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* Vision Card */
.vision-card {
    padding: 40px;
    position: relative;
    height: 100%;
    border: 2px solid #c7d2fe;
}

.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

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

/* Feature Card */
.feature-card {
    padding: 45px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before { transform: scaleX(1); }

.feature-card .icon-80 {
    margin-bottom: 25px;
    font-size: 2.5rem;
    position: relative;
}

.icon-80::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover .icon-80 {
    color: white;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.card:hover .icon-80::after { opacity: 1; }

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Featured Card Highlight */
.feature-card.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card.gradient-primary::before {
    display: none;
}

.feature-card.gradient-primary::after {
    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: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

.feature-card.gradient-primary h4,
.feature-card.gradient-primary p {
    position: relative;
    z-index: 1;
    color: white;
}

.feature-card.gradient-primary .icon-80 {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.feature-card.gradient-primary:hover .icon-80 {
    background: white;
    color: #667eea;
    transform: scale(1.15) rotate(-8deg);
}

/* Team Card */
.team-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .team-img img { transform: scale(1.1); }

.team-info {
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Value Card */
.value-card {
    padding: 40px;
    text-align: center;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.team-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.3s ease;
    z-index: 10;
}

.team-card:hover .team-accent {
    height: 8px;
}

.team-accent-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.team-accent-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.team-accent-emerald { background: linear-gradient(90deg, #10b981, #34d399); }
.team-accent-orange { background: linear-gradient(90deg, #f97316, #fb923c); }

.team-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.team-card:hover .team-glow {
    opacity: 1;
}

.team-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.team-badge {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.team-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.team-card:hover .team-badge::after {
    width: 60px;
}

.team-badge-blue { 
    color: #3b82f6;
}
.team-badge-blue::after { 
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.team-badge-purple { 
    color: #8b5cf6;
}
.team-badge-purple::after { 
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.team-badge-emerald { 
    color: #10b981;
}
.team-badge-emerald::after { 
    background: linear-gradient(90deg, #10b981, #34d399);
}

.team-badge-orange { 
    color: #f97316;
}
.team-badge-orange::after { 
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.team-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Testimonial Card */
.testimonial-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 20px 0 0 20px;
}

.accent-blue { background: linear-gradient(to bottom, #60a5fa, #3b82f6); }
.accent-purple { background: linear-gradient(to bottom, #a78bfa, #8b5cf6); }
.accent-emerald { background: linear-gradient(to bottom, #34d399, #10b981); }

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 2rem;
    color: #667eea;
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar-wrapper {
    position: relative;
}

.author-avatar-blue { border-color: #dbeafe; }
.author-avatar-purple { border-color: #ede9fe; }
.author-avatar-emerald { border-color: #d1fae5; }

.author-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.author-verified i {
    font-size: 0.6rem;
    color: white;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.author-location {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.author-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.author-badge-blue {
    background: #dbeafe;
    color: #1e40af;
}

.author-badge-purple {
    background: #ede9fe;
    color: #6d28d9;
}

.author-badge-emerald {
    background: #d1fae5;
    color: #065f46;
}

/* Section Decorations */
.testimonials-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.testimonials-decoration-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -100px;
    left: -100px;
}

.testimonials-decoration-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    bottom: -80px;
    right: -80px;
}

/* Section Badge & Titles */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    width: max-content;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Feedback Card */
.feedback-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

/* New Feedback Card Design */
.feedback-card-new {
    background: white;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.feedback-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: transparent;
}

.feedback-content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.feedback-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feedback-card-new:hover .feedback-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.feedback-content {
    flex: 1;
    text-align: left;
}

.feedback-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.feedback-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.btn-feedback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    font-size: 0.9375rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   4. BLOG PAGES (~150 lines)
   ========================================================================== */

.blog-list-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

.blog-list-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Blog Card */
.blog_wrap {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    /* margin-bottom: 30px; */
}

.blog_wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.post-media {
    position: relative;
    overflow: hidden;
}

.bd-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.bd-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog_wrap:hover .bd-post-image img {
    transform: scale(1.1);
}

.bd-metacats {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.bd-metacats a {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.bd-metacats a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post_summary_outer {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog_header h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog_header h2 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_header h2 a:hover {
    color: #667eea;
}

.post_content {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    margin-bottom: 20px;
}

.bd-more-next-line {
    display: inline-block;
}

.bd-more-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.bd-more-tag::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.bd-more-tag:hover {
    color: #764ba2;
    gap: 12px;
}

.bd-more-tag:hover::after {
    transform: translateX(4px);
}

.bd_social_share_wrap {
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.social-component {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bd-social-share {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.bd-social-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.bd-facebook-share:hover {
    background: #1877f2;
    color: white;
}

.bd-twitter-share:hover {
    background: #1da1f2;
    color: white;
}

.bd-linkedin-share:hover {
    background: #0a66c2;
    color: white;
}

.bd-pinterest-share:hover {
    background: #e60023;
    color: white;
}

/* Legacy Blog Card Styles (kept for backwards compatibility) */
.blog-card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .blog-card-img img { transform: scale(1.1); }

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i { color: #667eea; }

.blog-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.card:hover .blog-title { color: #667eea; }

.blog-excerpt {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    gap: 12px;
    color: #764ba2;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Search & Filter */
.blog-search {
    margin-bottom: 50px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: #667eea;
    color: #667eea;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

/* Featured Post */
.featured-post .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-post .blog-card-img {
    height: 100%;
    min-height: 400px;
}

.featured-post .blog-content { padding: 50px; }
.featured-post .blog-title { font-size: 1.875rem; }

/* Blog Detail Content */
.blog-detail-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.blog-detail-content img {
    width: 100%;
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 20px;
}

.blog-detail-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.blog-detail-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-content p,
.blog-detail-content li {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.blog-detail-content li {
    padding-left: 35px;
    position: relative;
}

.blog-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.blog-detail-content ol {
    counter-reset: item;
}

.blog-detail-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #667eea;
}

.blog-detail-content blockquote {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-left: 5px solid #667eea;
    padding: 30px 40px;
    margin: 2.5rem 0;
    border-radius: 0 16px 16px 0;
    font-size: 1.125rem;
    font-style: italic;
    color: #1e293b;
    position: relative;
}

.blog-detail-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Blog Detail Meta */
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
}

.blog-detail-meta-item i {
    color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

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

.breadcrumb-custom a:hover {
    color: white;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.6);
}

/* Share Section */
.share-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.share-section h5 {
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.share-btn-facebook {
    background: #1877f2;
    color: white;
}

.share-btn-twitter {
    background: #1da1f2;
    color: white;
}

.share-btn-linkedin {
    background: #0a66c2;
    color: white;
}

.share-btn-email {
    background: #64748b;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h5 {
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.recent-post {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h6 {
    font-size: 0.9375rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.8125rem;
    margin: 0;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Author Box */
.author-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Search & Filters */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ==========================================================================
   5. LEGAL PAGES (~80 lines)
   ========================================================================== */

/* .legal-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 0.9375rem;
    color: #667eea;
}

.last-updated i {
    font-size: 1.25rem;
}

.legal-content h2 {
    font-size:28px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
        padding-left: 20px;
}
.legal-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}
.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h5 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 20px;
}

.legal-content h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.legal-content h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-content li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.legal-content ol {
    counter-reset: item;
}

.legal-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #667eea;
}

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

.legal-content a:hover {
    color: #764ba2;
}

.legal-content b,
.legal-content strong {
    font-weight: 700;
    color: #1e293b;
}

/* Entry Content & Privacy Divs */
.entry-content,
.privacy {
    width: 100%;
}

.privacy h5:first-child {
    margin-top: 0;
}

.contact-box {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border: 2px solid #c7d2fe;
    border-radius: 24px;
    padding: 40px;
    margin-top: 4rem;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    /* position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%; */
}

.contact-box h4 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.375rem;
    position: relative;
    z-index: 1;
    margin-top: 0px;
}

.contact-box h4 i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    flex-shrink: 0;
}

.contact-box > p {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.15);
}

.contact-info-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-info-value {
    font-size: 0.9375rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-word;
}

.contact-info-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive for contact box */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   6. COMMON COMPONENTS (~60 lines)
   ========================================================================== */

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://img.freepik.com/premium-photo/cityscape-with-wifi-connection-conceptualinformation-communication-technology-concept_1376230-162.jpg?w=2000') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    color: #764ba2;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-color: #667eea;
    color: #667eea;
}

.page-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   7. RESPONSIVE (~100 lines)
   ========================================================================== */

@media (max-width: 991px) {
    .mission-card { flex-direction: column; }
    .mission-img { width: 100%; min-height: 400px; }
    .mission-content { padding: 60px 40px; }
    
    .feedback-card {
        flex-direction: column;
        text-align: center;
        padding: 45px 35px;
    }
    
    .featured-post .card { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    /* Hero */
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-text { font-size: 1.0625rem; }
    
    /* Sections */
    .section-py { padding: 60px 0; }
    
    /* Cards */
    .mission-img { min-height: 320px; }
    .mission-content { padding: 50px 30px; }
    .feature-card { padding: 35px 25px; }
    .icon-80 { width: 70px; height: 70px; font-size: 2rem; }
    
    /* Blog */
    .blog-card-img { height: 220px; }
    .blog-content { padding: 25px; }
    .blog-detail-content { padding: 40px 25px; }
    
    /* Legal */
    .legal-content h2 { font-size: 1.875rem; }
    .legal-content h3 { font-size: 1.375rem; }
}

/* ==========================================================================
   END - Total: ~800 lines (62% reduction from 2,094 lines)
   ========================================================================== */

/* ==========================================================================
   WORDPRESS BLOG DETAIL STYLES
   ========================================================================== */

/* Content Inner */
.content-inner {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* margin-bottom: 40px; */
}

/* Entry Header */
.entry-header {
    margin-bottom: 30px;
}

.title-post {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
}

.entry-meta.delimiter-dot > span:not(:last-child)::after {
    content: '•';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

.entry-meta a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: white;
}

.author vcard a {
    color: rgba(255, 255, 255, 0.95);
}

/* Entry Thumbnail */
.entry-thumb {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    float: right;
    width: 50%;
    margin-left: 30px;
    margin-bottom: 30px;
}

.entry-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* Entry Content */
.entry-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.entry-content h2.wp-block-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 20px;
}
.entry-content h2.wp-block-heading strong{
    font-weight: 600;   
}

.entry-content h2.wp-block-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.entry-content h3.wp-block-heading {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.entry-content li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.entry-content ol {
    counter-reset: item;
}

.entry-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #667eea;
}

.entry-content blockquote {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-left: 5px solid #667eea;
    padding: 30px 40px;
    margin: 2.5rem 0;
    border-radius: 0 16px 16px 0;
    font-size: 1.125rem;
    font-style: italic;
    color: #1e293b;
    position: relative;
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.entry-content figure.wp-block-image {
    margin: 2.5rem 0;
}

.entry-content figure.wp-block-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Entry Footer */
.entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f1f5f9;
}

.tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-links a {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #667eea;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tags-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .content-inner {
        padding: 40px 25px;
    }
    
    .title-post {
        font-size: 2rem;
    }
    
    .entry-content h2.wp-block-heading {
        font-size: 1.5rem;
    }
    
    .entry-content h3.wp-block-heading {
        font-size: 1.25rem;
    }
}
