/* ===========================
   Home Page Styles - Refined Design
   =========================== */

/* Hero Section */
.hero-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    position: relative;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

/* Refined Hero Card */
.hero-refined-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    position: relative;
}

.hero-refined-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Social Connect Header */
.hero-social-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: none;
}

.connect-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.95;
}

.social-links-inline {
    display: flex;
    gap: 0.5rem;
}

.social-link-inline {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    color: #667eea;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-inline:hover {
    background: white;
    color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: white;
}

/* Hero Content */
.hero-refined-content {
    padding: 3.75rem 3.5rem;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.hero-title-refined {
    font-size: 56px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-text-refined {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.btn-hero-secondary:hover i {
    transform: translateX(3px);
}

/* About Card (inside hero-grid) */
.about-card {
    background: white;
    border-radius: 24px;
    padding: 40px 45px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side - Stats & Description */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mini-stats {
    display: flex;
    gap: 1rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    flex: 1;
}

.mini-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mini-stat-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-intro {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Right Side - Skills Grid */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compact-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.compact-skill-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.25s ease;
}

.compact-skill-item i {
    font-size: 1.125rem;
    color: #667eea;
    transition: transform 0.25s ease;
}

.compact-skill-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.compact-skill-item:hover i {
    transform: scale(1.1);
}

.btn-skills-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    align-self: center;
}

.btn-skills-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
    color: white;
}

.btn-skills-all i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-skills-all:hover i {
    transform: translateX(3px);
}

/* Projects Preview Card */
.projects-card {
    background: white;
    border-radius: 24px;
    padding: 32px 38px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.projects-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-view-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.btn-view-all-projects:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
    color: white;
}

.btn-view-all-projects i {
    font-size: 0.6875rem;
    transition: transform 0.3s ease;
}

.btn-view-all-projects:hover i {
    transform: translateX(3px);
}

/* Projects Grid - 4 Cards in One Row */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.project-card-compact {
    background: #f8fafc;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid rgba(102, 126, 234, 0.25);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
}

.project-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.project-thumbnail {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card-compact:hover .project-thumbnail img {
    transform: scale(1.08);
}

.project-category-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.project-card-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.project-card-description {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    flex: 1;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.project-card-link:hover {
    color: #764ba2;
    gap: 0.75rem;
}

.project-card-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.project-card-link:hover i {
    transform: translateX(3px);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact-left {
    text-align: left;
    flex: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-card-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 500px;
}

.btn-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-contact-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-contact-card i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-contact-card:hover i {
    transform: translateX(3px);
}

.about-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.skills-preview {
    margin-top: 40px;
}

.skills-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.skill-card-home {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.skill-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-card-home:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.skill-card-home:hover::before {
    opacity: 1;
}

.skill-icon-home {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 1.25rem;
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.4s ease;
}

.skill-card-home:hover .skill-icon-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.skill-name-home {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-view-all i {
    transition: transform 0.4s ease;
}

.btn-view-all:hover i {
    transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-refined-content {
        padding: 3rem 2.5rem;
    }

    .hero-social-header {
        padding: 1.125rem 2rem;
    }

    .hero-title-refined {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        min-width: 280px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
        min-height: auto;
    }

    .hero-refined-card {
        border-radius: 20px;
    }

    .hero-refined-content {
        padding: 2.75rem 2rem;
    }

    .hero-social-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.875rem;
    }

    .hero-title-refined {
        font-size: 37px;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-text-refined {
        font-size: 1.2rem;
        line-height: 1.65;
        margin-bottom: 2.25rem;
    }

    .hero-buttons {
        gap: 0.875rem;
    }

    .btn-hero {
        padding: 1rem 1.75rem;
        min-width: 240px;
        font-size: 0.9375rem;
        justify-content: center
    }

    .social-link-inline {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
    }

    .about-card {
        padding: 32px 28px;
        border-radius: 20px;
    }

    .projects-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .projects-header {
        margin-bottom: 1.25rem;
    }

    .projects-title {
        font-size: 1.125rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .project-thumbnail {
        height: 170px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mini-stat-number {
        font-size: 1.5rem;
    }

    .compact-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        padding: 28px 32px;
    }

    .contact-card-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-left {
        text-align: center;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.125rem;
    }

    .contact-card-title {
        font-size: 1.375rem;
    }

    .contact-card-description {
        font-size: 0.875rem;
    }

    .btn-contact-card {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-refined-card {
        border-radius: 18px;
    }

    .hero-refined-card::after {
        height: 4px;
    }

    .hero-refined-content {
        padding: 2.25rem 1.5rem;
    }

    .hero-social-header {
        padding: 0.875rem 1.25rem;
        gap: 0.75rem;
    }

    .connect-label {
        font-size: 0.75rem;
    }

    .hero-tag {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-refined {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 0.875rem;
    }

    .hero-text-refined {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        flex-direction: column;
    }

    .btn-hero {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        justify-content: center;
    }

    .btn-hero i {
        font-size: 0.875rem;
    }

    .social-link-inline {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
        border-radius: 9px;
    }

    .about-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .about-card::after {
        height: 4px;
    }

    .projects-card {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .projects-header {
        flex-direction: row;
        align-items: center;
        gap: 0.625rem;
        margin-bottom: 1rem;
    }

    .projects-title {
        font-size: 1rem;
    }

    .btn-view-all-projects {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .btn-view-all-projects i {
        font-size: 0.625rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .project-thumbnail {
        height: 140px;
    }

    .project-card-content {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .project-card-name {
        font-size: 0.875rem;
    }

    .project-card-description {
        font-size: 0.75rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
    }

    .project-card-link {
        font-size: 0.75rem;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .mini-stats {
        gap: 0.75rem;
    }

    .mini-stat {
        padding: 0.75rem 1rem;
    }

    .mini-stat-number {
        font-size: 1.375rem;
    }

    .mini-stat-text {
        font-size: 0.6875rem;
    }

    .about-intro {
        font-size: 0.875rem;
    }

    .compact-skills-grid {
        grid-template-columns: 1fr;
    }

    .compact-skill-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    .btn-skills-all {
        width: 100%;
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        margin-top: 0px;
    }

    .contact-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .contact-card-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-left {
        text-align: center;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .contact-icon i {
        font-size: 1.125rem;
    }

    .contact-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .contact-card-description {
        font-size: 0.875rem;
    }

    .btn-contact-card {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }
}