@import 'variables.css';

/* ========================================
   WELCOME PAGE - MODERN DESIGN
======================================== */

/* Hero Section */
.hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
    overflow: hidden;
}

.min-vh-hero {
    min-height: calc(100vh - 200px);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 30%;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 175, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--primary-color);
    display: block;
}

.hero-text {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 102, 175, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 175, 0.45);
}

.btn-hero-primary i {
    transition: transform 0.3s;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.play-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 0.75rem;
}

.play-icon i {
    margin-left: 2px;
}

/* Hero Clients / Reviews */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-info .stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.875rem;
}

.client-info span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Hero Image */
.hero-image {
    position: relative;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.floating-stat .stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.1), rgba(0, 102, 175, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.floating-stat .stat-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.floating-stat .stat-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.floating-stat .stat-info strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.floating-stat .stat-info span {
    font-size: 0.75rem;
    color: #64748b;
}

.stat-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 30%;
    right: 5%;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

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

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 175, 0.1);
    color: var(--primary-color);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-heading span {
    color: var(--primary-color);
}

.section-desc {
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-wrapper {
    margin-top: 2rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 175, 0.12);
    border-color: rgba(0, 102, 175, 0.2);
}

.service-card .card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 102, 175, 0.08);
    line-height: 1;
}

.service-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
}

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

.service-card .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-card .card-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.3s;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-image {
    position: relative;
}

.about-image .image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image .image-main img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 102, 175, 0.4);
}

.experience-badge .exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.8125rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content .about-text {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-item .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.1), rgba(0, 102, 175, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.feature-item .feature-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.feature-item .feature-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 102, 175, 0.3);
    transition: all 0.3s ease;
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 175, 0.4);
}

/* ========================================
   COUNTER SECTION
======================================== */
.counter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color), #0d2d52);
}

.counter-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.counter-item {
    text-align: center;
    flex: 1;
}

.counter-item .counter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.counter-item .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-item .counter-number span {
    color: var(--primary-color);
}

.counter-item .counter-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   PROCESS SECTION
======================================== */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-wrapper {
    position: relative;
    margin-top: 3rem;
}

.process-line {
    display: none;
}

.process-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-item .process-num {
    position: absolute;
    top: 0;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 102, 175, 0.08);
    line-height: 1;
}

.process-item .process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 102, 175, 0.3);
}

.process-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.process-item p {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   INDUSTRIES SECTION
======================================== */
.industries-section {
    padding: 80px 0;
    background: #f8fafc;
}

.industries-text {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-industries {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 102, 175, 0.3);
    transition: all 0.3s ease;
}

.btn-industries:hover {
    transform: translateY(-3px);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.industry-item {
    padding: 1.25rem 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 175, 0.12);
    border-color: rgba(0, 102, 175, 0.2);
}

.industry-item .ind-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.1), rgba(0, 102, 175, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.875rem;
    transition: all 0.3s;
}

.industry-item .ind-icon i {
    font-size: 1.375rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.industry-item:hover .ind-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.05);
}

.industry-item:hover .ind-icon i {
    color: white;
}

.industry-item h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.industry-item p {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape-1,
.cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .floating-stat {
        padding: 10px 14px;
    }
    
    .floating-stat .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .floating-stat .stat-info strong {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .industries-section {
        padding: 70px 0;
    }
    
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.875rem;
    }
    
    .industry-item {
        padding: 1rem 0.75rem;
    }
    
    .industry-item .ind-icon {
        width: 50px;
        height: 50px;
    }
    
    .industry-item .ind-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .min-vh-hero {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-clients {
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-heading {
        font-size: 1.875rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .industries-section {
        padding: 60px 0;
    }
    
    /* Services mobile */
    .service-card {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .service-card .card-number {
        font-size: 1.75rem;
        top: 1rem;
        right: 1rem;
    }
    
    .service-card .card-icon {
        width: 54px;
        height: 54px;
        margin: 0 auto 1.25rem;
    }
    
    .service-card .card-icon i {
        font-size: 1.25rem;
    }
    
    /* About section mobile */
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .section-heading {
        text-align: center;
    }
    
    .about-content .about-text {
        font-size: 1rem;
    }
    
    .counter-wrapper {
        flex-wrap: wrap;
    }
    
    .counter-item {
        flex: 1 1 50%;
        margin-bottom: 2rem;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        right: 0;
        bottom: -10px;
    }
    
    .experience-badge .exp-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .feature-item {
        flex-direction: row;
        align-items: center;
        padding: 0.875rem;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        gap: 10px;
    }
    
    .feature-item .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
        flex-shrink: 0;
    }
    
    .feature-item .feature-info h5 {
        font-size: 0.8125rem;
        margin-bottom: 1px;
    }
    
    .feature-item .feature-info p {
        font-size: 0.6875rem;
        line-height: 1.3;
    }
    
    /* Industries section tablet */
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .industry-item {
        padding: 0.875rem 0.5rem;
    }
    
    .industry-item .ind-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.625rem;
    }
    
    .industry-item .ind-icon i {
        font-size: 1.125rem;
    }
    
    .industry-item h5 {
        font-size: 0.8125rem;
    }
    
    .industry-item p {
        font-size: 0.6875rem;
    }
    
    /* Process section mobile */
    .process-item {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .btn-cta {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-content {
        margin-top: 34px;
    }
    
    .hero-label {
        font-size: 0.8125rem;
        padding: 6px 14px;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .section-desc {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Services section mobile */
    .services-section,
    .about-section,
    .process-section,
    .industries-section {
        padding: 50px 0;
    }
    
    .services-wrapper {
        margin-top: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .service-card .card-number {
        font-size: 1.5rem;
    }
    
    .service-card .card-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .service-card .card-icon i {
        font-size: 1.125rem;
    }
    
    .service-card .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card .card-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .service-card .card-link {
        font-size: 0.875rem;
    }
    
    /* About section mobile */
    .about-image {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .about-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.75rem 0.5rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        gap: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .feature-item .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.875rem;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .feature-item .feature-info {
        flex: 1;
    }
    
    .feature-item .feature-info h5 {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .feature-item .feature-info p {
        font-size: 0.625rem;
        line-height: 1.3;
    }
    
    .btn-about {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .counter-wrapper {
        gap: 1rem;
    }
    
    .counter-item {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }
    
    .counter-item .counter-number {
        font-size: 2rem;
    }
    
    /* Industries section mobile */
    .industries-section .col-lg-5 {
        text-align: center;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .industry-item {
        padding: 1rem 0.75rem;
    }
    
    .industry-item .ind-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .industry-item .ind-icon i {
        font-size: 1.125rem;
    }
    
    .industry-item h5 {
        font-size: 0.875rem;
    }
    
    .industry-item p {
        font-size: 0.75rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.9375rem;
    }
    
    .btn-cta {
        margin-top: 2rem;
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
    
    /* Process section mobile */
    .process-item {
        padding: 1.25rem 0.75rem;
    }
    
    .process-item .process-num {
        font-size: 2.5rem;
        right: 1rem;
    }
    
    .process-item .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .process-item h4 {
        font-size: 1rem;
    }
    
    .process-item p {
        font-size: 0.875rem;
    }
    
    /* Hide floating stats on tablet */
    .floating-stat {
        display: none;
    }
    
    /* Hero image adjustments */
    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 85px 0 40px;
    }
    
    .hero-content {
        margin-top: 34px;
    }
    
    .hero-label {
        font-size: 0.75rem;
        padding: 5px 12px;
        gap: 6px;
        margin-bottom: 1rem;
    }
    
    .label-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btns {
        margin-bottom: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 0.75rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-desc {
        font-size: 0.875rem;
    }
    
    /* Services section mobile */
    .services-section,
    .about-section,
    .process-section,
    .industries-section {
        padding: 40px 0;
    }
    
    .services-wrapper {
        margin-top: 0.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
        margin-bottom: 0.875rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .service-card .card-number {
        font-size: 1.25rem;
        top: 0.875rem;
        right: 0.875rem;
    }
    
    .service-card .card-icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        margin: 0 auto 0.875rem;
    }
    
    .service-card .card-icon i {
        font-size: 1rem;
    }
    
    .service-card .card-title {
        font-size: 0.9375rem;
    }
    
    .service-card .card-text {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }
    
    .service-card .card-link {
        font-size: 0.8125rem;
    }
    
    /* About section mobile */
    .about-image {
        margin-bottom: 2rem;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        right: 0;
        bottom: -10px;
        border-radius: 14px;
    }
    
    .experience-badge .exp-number {
        font-size: 1.5rem;
    }
    
    .experience-badge .exp-text {
        font-size: 0.6875rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .about-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.625rem 0.375rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        gap: 6px;
    }
    
    .feature-item .feature-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .feature-item .feature-info h5 {
        font-size: 0.6875rem;
    }
    
    .feature-item .feature-info p {
        font-size: 0.5625rem;
        line-height: 1.25;
    }
    
    .btn-about {
        padding: 10px 20px;
        font-size: 0.875rem;
        border-radius: 10px;
    }
    
    /* Counter section mobile */
    .counter-section {
        padding: 40px 0;
    }
    
    .counter-item .counter-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .counter-item .counter-number {
        font-size: 1.75rem;
    }
    
    .counter-item .counter-label {
        font-size: 0.8125rem;
    }
    
    /* Process section mobile */
    .process-wrapper {
        margin-top: 1.5rem;
    }
    
    .process-item {
        padding: 1rem 0.5rem;
    }
    
    .process-item .process-num {
        font-size: 2rem;
        right: 0.5rem;
    }
    
    .process-item .process-icon {
        width: 54px;
        height: 54px;
        font-size: 1.125rem;
        border-radius: 14px;
        margin-bottom: 0.875rem;
    }
    
    .process-item h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }
    
    .process-item p {
        font-size: 0.8125rem;
    }
    
    /* Industries section mobile */
    .industries-section .col-lg-5 {
        text-align: center;
    }
    
    .industries-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-industries {
        padding: 10px 20px;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .industry-item {
        padding: 0.875rem 0.625rem;
        border-radius: 12px;
    }
    
    .industry-item .ind-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    
    .industry-item .ind-icon i {
        font-size: 1rem;
    }
    
    .industry-item h5 {
        font-size: 0.8125rem;
    }
    
    .industry-item p {
        font-size: 0.6875rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-text {
        font-size: 0.875rem;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
    
    .hero-clients {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .client-info {
        align-items: center;
    }
}

/* Ultra-small screens */
@media (max-width: 400px) {
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-title {
        font-size: 1.375rem;
    }
    
    .hero-text {
        font-size: 0.9375rem;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 18px;
        font-size: 0.875rem;
        max-width: 100%;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .section-desc {
        font-size: 0.8125rem;
    }
    
    .service-card {
        padding: 1rem;
        text-align: center;
    }
    
    .service-card .card-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.75rem;
    }
    
    .service-card .card-title {
        font-size: 0.875rem;
    }
    
    .service-card .card-text {
        font-size: 0.75rem;
    }
    
    .feature-item .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .feature-item .feature-info h5 {
        font-size: 0.75rem;
    }
    
    .feature-item .feature-info p {
        font-size: 0.625rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .exp-number {
        font-size: 1.25rem;
    }
    
    .industries-grid {
        gap: 0.5rem;
    }
    
    .industry-item {
        padding: 0.75rem 0.5rem;
    }
    
    .industry-item .ind-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        margin-bottom: 0.375rem;
    }
    
    .industry-item .ind-icon i {
        font-size: 0.875rem;
    }
    
    .industry-item h5 {
        font-size: 0.6875rem;
    }
    
    .industry-item p {
        font-size: 0.5625rem;
    }
    
    .cta-title {
        font-size: 1.125rem;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }
}

/* ========================================
   OTHER PAGE STYLES
======================================== */

/* About Page Styles */
.team-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background-color: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,116,217,0.1);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.team-img-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.team-social {
    margin-top: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-color);
    transition: var(--transition);
    margin: 0 0.25rem;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* FAQ Page Styles */
.accordion-item {
    margin-bottom: 1rem;
    border: none;
    background-color: transparent;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    background-color: white;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.accordion-button:focus {
    box-shadow: var(--shadow-md);
    border-color: rgba(0,116,217,0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.accordion-body p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.accordion-body ul, .accordion-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

/* Terms & Conditions Styles */
.terms-section {
    margin-bottom: 2rem;
}

.terms-section h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    position: relative;
    padding-left: 1rem;
}

.terms-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    height: 1.25rem;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.terms-section p {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.terms-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-color);
}

/* Contact Page Styles */
.contact-item {
    padding: 2.5rem 1.5rem;
    background-color: white;
    text-align: center;
    min-height: 350px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,116,217,0.1);
}

.contact-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-item a {
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 150px;
}

/* ========================================
   ABOUT PAGE - MODERN DESIGN
======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
    overflow: hidden;
}

.page-header-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-header-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.05;
}

.page-header-shapes .shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.page-header-shapes .shape-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -50px;
}

.page-header-shapes .shape-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 25%;
}

.page-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-title span {
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Story Section */
.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.story-image-wrapper {
    position: relative;
}

.story-image-wrapper img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 175, 0.35);
}

.story-badge .badge-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.story-badge .badge-text {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.3;
}

.story-content .section-heading {
    text-align: left !important;
}

.story-text {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 175, 0.15);
    border-color: rgba(0, 102, 175, 0.2);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.mission-icon i {
    font-size: 1.75rem;
    color: white;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 175, 0.15);
    border-color: rgba(0, 102, 175, 0.2);
}

.team-card-img {
    position: relative;
    padding: 1.5rem 1.5rem 0;
}

.team-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.team-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.team-card-body {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.3s;
}

.team-link:hover {
    gap: 0.75rem;
}

/* Primary Outline Button */
.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 175, 0.3);
}

/* ========================================
   ABOUT PAGE - RESPONSIVE
======================================== */
@media (max-width: 1199px) {
    .page-header {
        padding: 130px 0 70px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-story-section,
    .mission-section,
    .team-section {
        padding: 70px 0;
    }
    
    .story-badge {
        padding: 1rem;
    }
    
    .story-badge .badge-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 110px 0 60px;
        text-align: center;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .about-story-section,
    .mission-section,
    .team-section {
        padding: 60px 0;
    }
    
    .story-image-wrapper {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .story-content {
        text-align: center;
    }
    
    .story-content .section-heading {
        text-align: center !important;
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .mission-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    
    .page-subtitle {
        font-size: 0.9375rem;
    }
    
    .about-story-section,
    .mission-section,
    .team-section {
        padding: 50px 0;
    }
    
    .story-badge {
        right: 10px;
        bottom: 10px;
        padding: 0.875rem;
    }
    
    .story-badge .badge-number {
        font-size: 1.5rem;
    }
    
    .story-badge .badge-text {
        font-size: 0.6875rem;
    }
    
    .story-text {
        font-size: 0.9375rem;
    }
    
    .story-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.625rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .mission-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .mission-icon i {
        font-size: 1.5rem;
    }
    
    .mission-title {
        font-size: 1.125rem;
    }
    
    .mission-text {
        font-size: 0.875rem;
    }
    
    .team-card-img {
        padding: 1.25rem 1.25rem 0;
    }
    
    .team-card-img img,
    .team-placeholder {
        height: 150px;
    }
    
    .team-card-body {
        padding: 1.25rem;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .team-role {
        font-size: 0.8125rem;
    }
    
    .team-link {
        font-size: 0.875rem;
    }
    
    .btn-primary-outline {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-title {
        font-size: 1.625rem;
    }
    
    .page-subtitle {
        font-size: 0.875rem;
    }
    
    .about-story-section,
    .mission-section,
    .team-section {
        padding: 40px 0;
    }
    
    .story-badge {
        padding: 0.75rem;
    }
    
    .story-badge .badge-number {
        font-size: 1.25rem;
    }
    
    .story-badge .badge-text {
        font-size: 0.625rem;
    }
    
    .story-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .story-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1 1 auto;
    }
    
    .stat-number {
        font-size: 1.375rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .mission-card {
        padding: 1.25rem;
    }
    
    .mission-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 1rem;
    }
    
    .mission-icon i {
        font-size: 1.25rem;
    }
    
    .mission-title {
        font-size: 1rem;
    }
    
    .mission-text {
        font-size: 0.8125rem;
    }
    
    .team-card-img {
        padding: 1rem 1rem 0;
    }
    
    .team-card-img img,
    .team-placeholder {
        height: 130px;
        border-radius: 12px;
    }
    
    .team-placeholder {
        font-size: 2.5rem;
    }
    
    .team-card-body {
        padding: 1rem;
    }
    
    .team-name {
        font-size: 0.9375rem;
    }
    
    .team-role {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .team-link {
        font-size: 0.8125rem;
    }
    
    .btn-primary-outline {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 400px) {
    .page-header {
        padding: 85px 0 35px;
    }
    
    .page-title {
        font-size: 1.375rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        background: #f8fafc;
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .mission-card {
        padding: 1rem;
    }
    
    .mission-icon {
        width: 48px;
        height: 48px;
    }
    
    .mission-icon i {
        font-size: 1.125rem;
    }
    
    .team-card-img img,
    .team-placeholder {
        height: 110px;
    }
    
    .team-placeholder {
        font-size: 2rem;
    }
}

/* ========================================
   BLOG PAGE - MODERN DESIGN
======================================== */

/* Blog Hero Stats */
.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.blog-hero-stats .stat-item {
    text-align: center;
    background: transparent;
    padding: 0;
}

.blog-hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.blog-hero-stats .stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Blog Content Section */
.blog-content-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 175, 0.12);
    border-color: rgba(0, 102, 175, 0.2);
}

.blog-post-image {
    position: relative;
    width: 280px;
    min-height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2.5rem;
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-meta .meta-item {
    font-size: 0.8125rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post-meta .meta-item i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s;
}

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

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

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-post-author .author-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.blog-post-author .author-name {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.blog-post-footer .read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.blog-post-card:hover .read-more {
    gap: 0.75rem;
}

/* Blog Empty State */
.blog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.blog-empty-state .empty-icon {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.blog-empty-state h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.blog-empty-state p {
    font-size: 1rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.blog-pagination .pagination {
    gap: 0.5rem;
}

.blog-pagination .page-link {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.blog-pagination .page-link:hover,
.blog-pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Blog Sidebar */
.blog-sidebar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.blog-sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(0, 102, 175, 0.08);
}

.sidebar-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card-header i {
    color: white;
    font-size: 1.125rem;
}

.sidebar-card-header h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.sidebar-card-body {
    padding: 1.5rem;
}

.sidebar-card-body p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-card-body p:last-child {
    margin-bottom: 0;
}

/* Sidebar Categories */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.sidebar-category-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 102, 175, 0.2);
}

.sidebar-category-item .category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9375rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sidebar-category-item:hover .category-icon {
    background: white;
    color: var(--primary-color);
}

.sidebar-category-item .category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-category-item .category-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.sidebar-category-item:hover .category-name {
    color: white;
}

.sidebar-category-item .category-count {
    font-size: 0.8125rem;
    color: #64748b;
    transition: color 0.3s;
}

.sidebar-category-item:hover .category-count {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-category-item .category-arrow {
    color: #94a3b8;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.sidebar-category-item:hover .category-arrow {
    color: white;
    transform: translateX(3px);
}

/* Sidebar Features */
.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.sidebar-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s;
}

.sidebar-feature:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-feature i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8125rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sidebar-feature:hover i {
    background: white;
    color: var(--primary-color);
}

.sidebar-feature span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.sidebar-feature:hover span {
    color: white;
}

/* ========================================
   BLOG PAGE - RESPONSIVE
======================================== */
@media (max-width: 1199px) {
    .blog-content-section {
        padding: 70px 0;
    }
    
    .blog-hero-stats {
        gap: 2rem;
    }
    
    .blog-hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .blog-post-image {
        width: 250px;
    }
}

@media (max-width: 991px) {
    .blog-content-section {
        padding: 60px 0;
    }
    
    .blog-hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blog-hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .blog-hero-stats .stat-label {
        font-size: 0.8125rem;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .blog-post-image {
        width: 100%;
        height: 200px;
        min-height: auto;
    }
    
    .blog-post-body {
        padding: 1.25rem;
    }
    
    .sidebar-card-header {
        padding: 1rem 1.25rem;
    }
    
    .sidebar-card-body {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .blog-content-section {
        padding: 50px 0;
    }
    
    .blog-hero-stats {
        gap: 1rem;
    }
    
    .blog-hero-stats .stat-item {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .blog-hero-stats .stat-number {
        font-size: 1.375rem;
    }
    
    .blog-post-image {
        height: 180px;
    }
    
    .blog-post-category {
        padding: 5px 12px;
        font-size: 0.6875rem;
    }
    
    .blog-post-body {
        padding: 1.25rem;
    }
    
    .blog-post-meta {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-post-meta .meta-item {
        font-size: 0.75rem;
    }
    
    .blog-post-title {
        font-size: 1.125rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .blog-post-footer {
        padding-top: 0.875rem;
    }
    
    .blog-post-author .author-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }
    
    .blog-post-author .author-name {
        font-size: 0.8125rem;
    }
    
    .blog-post-footer .read-more {
        font-size: 0.8125rem;
    }
    
    .blog-sidebar-card {
        margin-bottom: 1rem;
    }
    
    .sidebar-card-header {
        padding: 1rem;
    }
    
    .sidebar-card-header h4 {
        font-size: 1rem;
    }
    
    .sidebar-card-body {
        padding: 1rem;
    }
    
    .sidebar-card-body p {
        font-size: 0.875rem;
    }
    
    .sidebar-category-item {
        padding: 0.875rem;
    }
    
    .sidebar-category-item .category-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .sidebar-category-item .category-name {
        font-size: 0.875rem;
    }
    
    .sidebar-category-item .category-count {
        font-size: 0.75rem;
    }
    
    .sidebar-feature {
        padding: 0.75rem;
    }
    
    .sidebar-feature i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .sidebar-feature span {
        font-size: 0.875rem;
    }
}

@media (max-width: 575px) {
    .blog-content-section {
        padding: 40px 0;
    }
    
    .blog-hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .blog-hero-stats .stat-number {
        font-size: 1.25rem;
    }
    
    .blog-hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .blog-posts-grid {
        gap: 1rem;
    }
    
    .blog-post-card {
        border-radius: 16px;
    }
    
    .blog-post-image {
        height: 160px;
    }
    
    .blog-post-category {
        top: 0.75rem;
        left: 0.75rem;
        padding: 4px 10px;
        font-size: 0.625rem;
    }
    
    .blog-post-body {
        padding: 1rem;
    }
    
    .blog-post-meta {
        gap: 0.75rem;
    }
    
    .blog-post-title {
        font-size: 1rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .blog-empty-state {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }
    
    .blog-empty-state .empty-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .blog-empty-state h3 {
        font-size: 1.25rem;
    }
    
    .blog-empty-state p {
        font-size: 0.875rem;
    }
    
    .blog-sidebar-card {
        border-radius: 16px;
    }
    
    .sidebar-category-item {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .sidebar-category-item .category-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .sidebar-feature {
        padding: 0.625rem 0.75rem;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .blog-hero-stats {
        gap: 1.5rem;
    }
    
    .blog-hero-stats .stat-number {
        font-size: 1.125rem;
    }
    
    .blog-post-image {
        height: 140px;
    }
    
    .blog-post-body {
        padding: 0.875rem;
    }
    
    .blog-post-title {
        font-size: 0.9375rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.75rem;
    }
    
    .blog-post-author .author-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .blog-post-author .author-name {
        font-size: 0.75rem;
    }
    
    .sidebar-card-header {
        padding: 0.875rem;
    }
    
    .sidebar-card-header i {
        font-size: 1rem;
    }
    
    .sidebar-card-header h4 {
        font-size: 0.9375rem;
    }
    
    .sidebar-card-body {
        padding: 0.875rem;
    }
    
    .sidebar-category-item .category-icon {
        display: none;
    }
    
    .sidebar-feature i {
        width: 24px;
        height: 24px;
        font-size: 0.6875rem;
    }
    
    .sidebar-feature span {
        font-size: 0.8125rem;
    }
}
/* ========================================
   BLOG SHOW PAGE - MODERN DESIGN
======================================== */

/* Blog Post Header */
.blog-post-header .page-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-page-title {
    font-size: 2.5rem;
    line-height: 1.3;
}

.blog-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.blog-category-tag:hover {
    transform: translateY(-2px);
}

/* Post Meta Header */
.blog-post-meta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-meta-header .meta-author,
.blog-post-meta-header .meta-date,
.blog-post-meta-header .meta-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-post-meta-header .author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.blog-post-meta-header .author-details,
.blog-post-meta-header .date-details,
.blog-post-meta-header .time-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.blog-post-meta-header .author-name,
.blog-post-meta-header .date-value,
.blog-post-meta-header .time-value {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9375rem;
}

.blog-post-meta-header .author-label,
.blog-post-meta-header .date-label,
.blog-post-meta-header .time-label {
    font-size: 0.8125rem;
    color: #64748b;
}

.blog-post-meta-header .meta-date i,
.blog-post-meta-header .meta-time i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.blog-post-meta-header .meta-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Featured Image */
.blog-featured-image-section {
    padding: 1.5rem 0;
    background: #f8fafc;
}

.blog-featured-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-featured-image-wrapper:hover .blog-featured-image {
    transform: scale(1.02);
}

/* Blog Article Section */
.blog-article-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.blog-article-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

/* Article Content Styles */
.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.blog-article-content h1 { font-size: 1.875rem; }
.blog-article-content h2 { font-size: 1.5rem; }
.blog-article-content h3 { font-size: 1.25rem; }
.blog-article-content h4 { font-size: 1.125rem; }

.blog-article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #475569;
    font-size: 1.0625rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #475569;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #64748b;
}

.blog-article-content pre {
    position: relative;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.blog-article-content code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-copy-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.code-copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Article Actions */
.blog-article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #475569;
    color: white !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.blog-back-btn:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

.blog-social-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-social-share .share-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9375rem;
}

.blog-social-share .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-social-share .social-btn.twitter { background: #1da1f2; }
.blog-social-share .social-btn.facebook { background: #4267B2; }
.blog-social-share .social-btn.linkedin { background: #0077b5; }

.blog-social-share .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Related Posts Section */
.blog-related-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.related-header {
    text-align: center;
    margin-bottom: 2rem;
}

.related-header .section-tag {
    margin-bottom: 0.75rem;
}

.related-header .section-heading {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.related-header .section-desc {
    font-size: 1rem;
}

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

.related-post-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 175, 0.12);
}

.related-post-image {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

.related-post-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
}

.related-post-card:hover .related-post-overlay {
    opacity: 1;
    transform: scale(1);
}

.related-post-body {
    padding: 1.25rem;
}

.related-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.related-post-card:hover .related-post-title {
    color: var(--primary-color);
}

.related-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

.related-post-meta .post-date {
    color: #64748b;
}

.related-post-meta .post-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
}

/* TOC Card */
.blog-toc-card {
    position: sticky;
    top: 100px;
}

.toc-list {
    display: flex;
    flex-direction: column;
}

.toc-list .toc-item {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--secondary-color);
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.toc-list .toc-item:hover,
.toc-list .toc-item.active {
    color: var(--primary-color);
    padding-left: 0.75rem;
}

.toc-list .toc-h2 {
    padding-left: 1rem;
    font-size: 0.875rem;
}

.toc-list .toc-h3 {
    padding-left: 2rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.toc-list .toc-h2:hover,
.toc-list .toc-h2.active {
    padding-left: 1.5rem;
}

.toc-list .toc-h3:hover,
.toc-list .toc-h3.active {
    padding-left: 2.5rem;
}

.toc-empty {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

/* Author Card */
.author-info-card {
    text-align: center;
}

.author-info-card .author-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.author-info-card .author-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.author-info-card .author-bio {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.author-info-card .author-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.author-info-card .author-stat {
    text-align: center;
}

.author-info-card .stat-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
}

.author-info-card .stat-label {
    font-size: 0.8125rem;
    color: #64748b;
}

/* Sidebar Category Active State */
.sidebar-category-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.sidebar-category-item.active .category-icon {
    background: white;
    color: var(--primary-color);
}

.sidebar-category-item.active .category-name {
    color: white;
}

.sidebar-category-item.active .category-count {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-category-item.active .category-arrow {
    color: white;
}

/* ========================================
   BLOG SHOW PAGE - RESPONSIVE
======================================== */
@media (max-width: 1199px) {
    .blog-post-page-title {
        font-size: 2.25rem;
    }
    
    .blog-article-section {
        padding: 50px 0 70px;
    }
    
    .blog-article-card {
        padding: 2rem;
    }
    
    .blog-related-section {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .blog-post-page-title {
        font-size: 2rem;
    }
    
    .blog-post-meta-header {
        gap: 1.5rem;
    }
    
    .blog-post-meta-header .meta-divider {
        display: none;
    }
    
    .blog-article-section {
        padding: 40px 0 60px;
    }
    
    .blog-article-card {
        padding: 1.5rem;
    }
    
    .blog-toc-card {
        position: static;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .blog-post-header {
        padding: 100px 0 50px;
    }
    
    .blog-post-page-title {
        font-size: 1.75rem;
        line-height: 1.35;
    }
    
    .blog-post-meta-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-post-meta-header .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .blog-featured-image-wrapper {
        border-radius: 16px;
    }
    
    .blog-featured-image {
        max-height: 350px;
    }
    
    .blog-article-section {
        padding: 30px 0 50px;
    }
    
    .blog-article-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .blog-article-content p {
        font-size: 1rem;
    }
    
    .blog-article-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-social-share {
        width: 100%;
        justify-content: flex-start;
    }
    
    .blog-related-section {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .related-header .section-heading {
        font-size: 1.5rem;
    }
    
    .related-post-image {
        height: 140px;
    }
    
    .author-info-card .author-avatar-large {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .author-info-card .author-stats {
        gap: 1.5rem;
    }
    
    .author-info-card .stat-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .blog-post-header {
        padding: 90px 0 40px;
    }
    
    .blog-post-page-title {
        font-size: 1.5rem;
    }
    
    .blog-category-tag {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }
    
    .blog-featured-image-section {
        padding: 1rem 0;
    }
    
    .blog-featured-image {
        max-height: 280px;
    }
    
    .blog-article-card {
        padding: 1rem;
    }
    
    .blog-article-content h1 { font-size: 1.5rem; }
    .blog-article-content h2 { font-size: 1.25rem; }
    .blog-article-content h3 { font-size: 1.125rem; }
    .blog-article-content h4 { font-size: 1rem; }
    
    .blog-article-content p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .blog-back-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .blog-social-share .social-btn {
        width: 36px;
        height: 36px;
    }
    
    .blog-related-section {
        padding: 1.25rem;
    }
    
    .related-post-body {
        padding: 1rem;
    }
    
    .related-post-title {
        font-size: 0.9375rem;
    }
    
    .author-info-card .author-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .author-info-card .author-card-name {
        font-size: 1rem;
    }
    
    .author-info-card .author-bio {
        font-size: 0.875rem;
    }
}

@media (max-width: 400px) {
    .blog-post-page-title {
        font-size: 1.375rem;
    }
    
    .blog-article-content p {
        font-size: 0.875rem;
    }
    
    .related-header .section-heading {
        font-size: 1.25rem;
    }

    .related-post-image {
        height: 120px;
    }
}

/* ========================================
   BLOG CATEGORY PAGE - MODERN DESIGN
======================================== */

/* Back Navigation */
.blog-back-nav {
    text-align: center;
    margin-top: 2rem;
}

/* Category Stats in Sidebar */
.category-stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 1rem;
}

.category-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

.category-stat-item:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.category-stat-item .stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.category-stat-item:hover .stat-icon {
    background: white;
    color: var(--primary-color);
}

.category-stat-item .stat-details {
    display: flex;
    flex-direction: column;
}

.category-stat-item .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.category-stat-item:hover .stat-value {
    color: white;
}

.category-stat-item .stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    transition: color 0.3s;
}

.category-stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   BLOG CATEGORY PAGE - RESPONSIVE
======================================== */
@media (max-width: 767px) {
    .category-stat-item {
        padding: 0.875rem;
    }
    
    .category-stat-item .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
    }
    
    .category-stat-item .stat-value {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .category-stat-item {
        padding: 0.75rem;
    }
    
    .category-stat-item .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .category-stat-item .stat-value {
        font-size: 1rem;
    }
    
    .category-stat-item .stat-label {
        font-size: 0.75rem;
    }
}


/* ========================================
   TEAM PAGE STYLES
======================================== */

/* Team Hero Stats */
.team-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.team-hero-stats .stat-item {
    text-align: center;
}

.team-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.team-hero-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Team Members Section */
.team-members-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.team-members-section .section-header {
    margin-bottom: 4rem;
}

.team-members-section .section-desc {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Team Member Card */
.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 102, 175, 0.15);
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

/* Member Image Wrapper */
.member-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.team-member-card:hover .member-image {
    transform: scale(1.08);
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-placeholder span {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

/* Member Overlay */
.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 34, 64, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

/* Member Social Links */
.member-social {
    display: flex;
    gap: 0.75rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-social {
    transform: translateY(0);
}

.member-social .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Member Content */
.member-content {
    padding: 1.75rem;
    text-align: center;
}

.member-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Member Profile Link */
.member-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-profile-link:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 175, 0.3);
}

.member-profile-link i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.member-profile-link:hover i:last-child {
    transform: translateX(3px);
}

/* Team Empty State */
.team-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.team-empty-state .empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.1), rgba(10, 34, 64, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-empty-state .empty-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.team-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-empty-state p {
    font-size: 1rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.team-empty-state .empty-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 102, 175, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Team Page Responsive */
@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .member-image-wrapper {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .team-members-section {
        padding: 4rem 0;
    }
    
    .team-hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .team-hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .team-hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-image-wrapper {
        height: 280px;
    }
    
    .member-placeholder span {
        font-size: 4rem;
    }
    
    .member-content {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.25rem;
    }
    
    .team-empty-state {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .team-hero-stats {
        gap: 1rem;
    }
    
    .team-hero-stats .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .team-hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .member-image-wrapper {
        height: 240px;
    }
    
    .member-placeholder span {
        font-size: 3.5rem;
    }
    
    .member-social .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}


/* ========================================
   PROFILE PAGE STYLES
======================================== */

/* Profile Page */
.profile-page {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
    overflow: hidden;
}

/* Back Link */
.profile-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.profile-back:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-back i {
    transition: transform 0.3s ease;
}

.profile-back:hover i {
    transform: translateX(-3px);
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 102, 175, 0.1);
    width: 100%;
}

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-avatar-box {
    flex-shrink: 0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-avatar-fallback {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.profile-intro {
    flex: 1;
    color: white;
}

.profile-name {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.profile-role {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0 0 1.25rem 0;
}

.profile-links {
    display: flex;
    gap: 0.625rem;
}

.profile-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Profile Body */
.profile-body {
    padding: 2.5rem 3rem;
}

/* Profile Section Title */
.profile-section-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.profile-section-title i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Skills Section */
.profile-skills {
    margin-bottom: 2.5rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.08), rgba(10, 34, 64, 0.05));
    border: 1px solid rgba(0, 102, 175, 0.15);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
}

.skill-badge:hover .skill-name,
.skill-badge:hover .skill-level {
    color: white;
}

.skill-badge .skill-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.skill-badge .skill-level {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 102, 175, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.skill-badge:hover .skill-level {
    background: rgba(255, 255, 255, 0.2);
}

/* Skill Level Colors */
.skill-expert {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.08));
    border-color: rgba(34, 197, 94, 0.2);
}
.skill-expert .skill-name {
    color: #166534;
}
.skill-expert .skill-level {
    color: #16a34a;
    background: rgba(34, 197, 94, 0.15);
}
.skill-expert:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.skill-advanced {
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.08), rgba(10, 34, 64, 0.05));
    border-color: rgba(0, 102, 175, 0.15);
}
.skill-advanced .skill-name {
    color: var(--secondary-color);
}
.skill-advanced .skill-level {
    color: var(--primary-color);
    background: rgba(0, 102, 175, 0.1);
}
.skill-advanced:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.skill-intermediate {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.08));
    border-color: rgba(245, 158, 11, 0.2);
}
.skill-intermediate .skill-name {
    color: #92400e;
}
.skill-intermediate .skill-level {
    color: #d97706;
    background: rgba(245, 158, 11, 0.15);
}
.skill-intermediate:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.skill-beginner {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(75, 85, 99, 0.08));
    border-color: rgba(107, 114, 128, 0.2);
}
.skill-beginner .skill-name {
    color: #374151;
}
.skill-beginner .skill-level {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.15);
}
.skill-beginner:hover {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Profile About */
.profile-about {
    margin-bottom: 0;
}

/* Profile Bio */
.profile-bio {
    color: #475569;
    line-height: 1.85;
    font-size: 1.05rem;
}

.profile-bio p {
    margin-bottom: 1.25rem;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

.profile-bio h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.profile-bio h2:first-child {
    margin-top: 0;
}

.profile-bio h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.75rem 0 0.75rem;
}

.profile-bio ul,
.profile-bio ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.profile-bio li {
    margin-bottom: 0.5rem;
}

.profile-bio strong {
    color: var(--secondary-color);
}

.profile-bio img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.profile-bio blockquote {
    border-left: 4px solid var(--primary-color);
    background: #f8fafc;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #64748b;
}

/* Profile Page Responsive */
@media (max-width: 767px) {
    .profile-page {
        padding: 100px 0 60px;
    }
    
    .profile-back {
        margin-bottom: 1.5rem;
    }
    
    .profile-card {
        border-radius: 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.25rem;
    }
    
    .profile-avatar,
    .profile-avatar-fallback {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }
    
    .profile-avatar-fallback {
        font-size: 2.5rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-role {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .profile-links {
        justify-content: center;
    }
    
    .profile-body {
        padding: 1.75rem;
    }
    
    .profile-section-title {
        font-size: 1rem;
    }
    
    .skills-grid {
        gap: 0.5rem;
    }
    
    .skill-badge {
        padding: 0.4rem 0.875rem;
    }
    
    .skill-badge .skill-name {
        font-size: 0.8rem;
    }
    
    .skill-badge .skill-level {
        font-size: 0.7rem;
    }
    
    .profile-bio {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .profile-page {
        padding: 90px 0 50px;
    }
    
    .profile-card {
        border-radius: 16px;
    }
    
    .profile-header {
        padding: 1.5rem;
    }
    
    .profile-avatar,
    .profile-avatar-fallback {
        width: 85px;
        height: 85px;
        border-radius: 14px;
        border-width: 3px;
    }
    
    .profile-avatar-fallback {
        font-size: 2rem;
    }
    
    .profile-name {
        font-size: 1.35rem;
    }
    
    .profile-role {
        font-size: 0.95rem;
    }
    
    .profile-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .profile-body {
        padding: 1.5rem;
    }
    
    .profile-skills {
        margin-bottom: 2rem;
    }
    
    .profile-bio h2 {
        font-size: 1.25rem;
    }
    
    .profile-bio h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   TERMS PAGE STYLES
======================================== */

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
}

/* Terms Card */
.terms-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 102, 175, 0.1);
}

.terms-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.terms-card-header i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.terms-card-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.terms-card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.terms-card-body {
    padding: 3rem;
}

/* Terms Item */
.terms-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 102, 175, 0.1);
}

.terms-item:last-of-type {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.terms-item-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.terms-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.terms-item-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.terms-item-content {
    padding-left: 4.5rem;
}

.terms-item-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.terms-item-content p:last-child {
    margin-bottom: 0;
}

/* Terms List */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
    line-height: 1.7;
}

.terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Terms Contact Grid */
.terms-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.terms-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.05), rgba(10, 34, 64, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 175, 0.1);
    transition: all 0.3s ease;
}

.terms-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 175, 0.1);
}

.terms-contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.terms-contact-item h6 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.25rem 0;
}

.terms-contact-item p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

/* Terms Footer */
.terms-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 175, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.terms-footer i {
    color: var(--primary-color);
}

/* Terms Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }
    
    .terms-card-header {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .terms-card-body {
        padding: 2rem;
    }
    
    .terms-item-header {
        flex-direction: column;
        text-align: center;
    }
    
    .terms-item-content {
        padding-left: 0;
    }
    
    .terms-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ PAGE STYLES
======================================== */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
}

/* FAQ Category */
.faq-category {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 102, 175, 0.1);
    margin-bottom: 2rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: white;
}

.faq-category-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.faq-category-header p {
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.faq-category-body {
    padding: 2rem;
}

/* FAQ Item */
.faq-item {
    border: 2px solid rgba(0, 102, 175, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(0, 102, 175, 0.2);
    box-shadow: 0 5px 20px rgba(0, 102, 175, 0.08);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover {
    background: rgba(0, 102, 175, 0.03);
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.faq-question[aria-expanded="true"] span {
    color: white;
}

.faq-question[aria-expanded="true"] i {
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    background: rgba(0, 102, 175, 0.02);
    border-top: 1px solid rgba(0, 102, 175, 0.1);
}

.faq-answer-content {
    padding: 1.5rem;
}

.faq-answer-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* FAQ List */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-weight: 700;
}

/* FAQ Numbered List */
.faq-numbered-list {
    counter-reset: faq-counter;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-numbered-list li {
    counter-increment: faq-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-numbered-list li::before {
    content: counter(faq-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

/* FAQ Timeline Grid */
.faq-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.faq-timeline-item {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 175, 0.1);
}

.faq-timeline-item .timeline-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 0.5rem;
}

.faq-timeline-item .timeline-badge.small {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.faq-timeline-item .timeline-badge.medium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.faq-timeline-item .timeline-badge.large {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.faq-timeline-item span:last-child {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* FAQ Pricing Grid */
.faq-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.faq-pricing-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 175, 0.1);
    transition: all 0.3s ease;
}

.faq-pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.faq-pricing-card h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.faq-pricing-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Guarantee Grid */
.faq-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.faq-guarantee-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 175, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.faq-guarantee-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.faq-guarantee-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem auto;
}

.faq-guarantee-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
}

.faq-guarantee-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-category-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-category-body {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 1.25rem;
    }
    
    .faq-timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-pricing-grid,
    .faq-guarantee-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 102, 175, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 175, 0.15);
}

.contact-card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
}

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

.contact-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.contact-card-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card-extra {
    font-size: 0.875rem;
    color: #64748b;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 102, 175, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 102, 175, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 0.375rem 0;
}

.contact-info-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Social Card */
.contact-social-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 102, 175, 0.08);
}

.contact-social-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.contact-social-card > p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.contact-social-link.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.contact-social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.contact-social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.contact-social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.contact-social-link.github {
    background: linear-gradient(135deg, #333, #24292e);
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .contact-social-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-social-links {
        gap: 0.75rem;
    }
    
    .contact-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


/* ========================================
   SERVICE PAGES
======================================== */

/* Service Overview Section */
.service-overview-section {
    padding: 80px 0;
    background: #fff;
}

.service-overview-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-overview-content {
    padding-left: 20px;
}

.service-overview-content p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.service-highlights-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-highlight {
    text-align: center;
}

.service-highlight .highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.service-highlight .highlight-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Service Features Section */
.service-features-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.service-feature-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-feature-card:hover .feature-card-icon {
    background: var(--primary-color);
    color: #fff;
}

.service-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

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

/* Service Tech Section */
.service-tech-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    cursor: default;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: #fff;
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.tech-item:hover i {
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Service Process Section */
.service-process-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.service-process-wrapper {
    margin-top: 2rem;
}

.service-process-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--border-radius-lg);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-process-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-process-item .process-step {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.service-process-item .process-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.service-process-item:hover .process-icon {
    background: var(--primary-color);
    color: #fff;
}

.service-process-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-process-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Pages - Responsive */
@media (max-width: 991px) {
    .service-overview-content {
        padding-left: 0;
        margin-top: 1rem;
    }

    .service-highlights-row {
        justify-content: center;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .service-overview-section,
    .service-features-section,
    .service-tech-section,
    .service-process-section {
        padding: 50px 0;
    }

    .service-highlights-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .service-highlight .highlight-number {
        font-size: 1.6rem;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-item {
        padding: 1rem 0.75rem;
    }

    .tech-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .service-highlights-row {
        gap: 1rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}