@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Modern Design System for KanuSoft Home Page */
:root {
    --font-modern: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --primary: #0f7dff;
    --primary-glow: rgba(15, 125, 255, 0.25);
    --secondary: #3b96d2;
    --accent: #6366f1;
    --dark-blue: #081A2F;
    --dark-card: #111827;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;
    --border-light: rgba(241, 245, 249, 0.8);
    --border-dark: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 15px 35px rgba(15, 125, 255, 0.2);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles for redesigned sections */
.modern-section {
    font-family: var(--font-modern);
    padding: 100px 0;
    position: relative;
    background-color: var(--light-bg);
}

.modern-section.bg-white {
    background-color: #ffffff;
}

.modern-section.bg-gray {
    background-color: #f1f5f9;
}

/* SECTION HEADING */
.modern-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.modern-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(15, 125, 255, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.modern-heading h2 {
    font-family: var(--font-modern);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.modern-heading p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* MODERN HERO BANNER */
.modern-hero {
    font-family: var(--font-modern);
    /* Gradient overlay on left to ensure text legibility + generated banner on right */
    background: linear-gradient(90deg, #081a2f 0%, rgba(8, 26, 47, 0.85) 45%, rgba(8, 26, 47, 0.2) 100%), 
                url('/Content/assets/img/modern-hero-banner.png') no-repeat center right / cover;
    padding: 160px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .modern-hero {
        background: linear-gradient(180deg, rgba(8, 26, 47, 0.95) 0%, rgba(8, 26, 47, 0.8) 100%), 
                    url('/Content/assets/img/modern-hero-banner.png') no-repeat center center / cover;
        padding: 100px 0;
        text-align: center;
    }
}

.modern-hero .container {
    position: relative;
    z-index: 2;
}

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

/* Badge at the top of the text */
.modern-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-light-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.modern-hero .hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50px;
    margin-right: 10px;
    box-shadow: 0 0 10px #10b981;
}

/* Main title styling */
.modern-hero h2 {
    font-family: var(--font-modern);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .modern-hero h2 {
        font-size: 2.8rem;
    }
}

/* Subtitle description */
.modern-hero p.lead-i {
    font-family: var(--font-modern);
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-light-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

@media (max-width: 991px) {
    .modern-hero p.lead-i {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Actions wrapper */
.hero-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* Primary Action button */
.btn-modern-primary {
    font-family: var(--font-modern);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: linear-gradient(135deg, #0f7dff 0%, #3b96d2 100%);
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 25px rgba(15, 125, 255, 0.3);
    text-decoration: none !important;
}

.btn-modern-primary i {
    margin-left: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 125, 255, 0.45);
}

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

/* Secondary Action button */
.btn-modern-secondary {
    font-family: var(--font-modern);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none !important;
    margin-left: 15px;
}

@media (max-width: 575px) {
    .btn-modern-secondary {
        margin-left: 0;
        width: 100%;
    }
    .btn-modern-primary {
        width: 100%;
    }
}

.btn-modern-secondary i {
    margin-left: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-modern-secondary:hover i {
    transform: translateX(4px);
}

/* MODERN SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.modern-service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modern-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

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

.modern-service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(15, 125, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.modern-service-card:hover .service-icon-box {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(15, 125, 255, 0.2);
}

.service-icon-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: var(--transition);
}

.modern-service-card:hover .service-icon-box img {
    filter: brightness(0) invert(1);
}

.modern-service-card h4 {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

/* MODERN CLIENTS */
.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.modern-client-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 20px);
    min-height: 140px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
    .modern-client-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 575px) {
    .modern-client-card {
        width: 100%;
    }
}

.modern-client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 125, 255, 0.2);
}

.client-logo-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-logo-wrapper img {
    max-height: 55px;
    max-width: 80%;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
    margin-bottom: 12px;
}

.modern-client-card:hover .client-logo-wrapper img {
    opacity: 1;
    filter: grayscale(0%);
}

.modern-client-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.modern-client-card:hover h4 {
    color: var(--primary);
}

/* LATEST PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.modern-project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-img-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #f1f5f9;
}

.project-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-project-card:hover .project-img-container img {
    transform: scale(1.08);
}

.project-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(9, 13, 22, 0.4) 0%, transparent 60%);
}

.project-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    background-color: #f1f5f9;
    color: var(--text-muted);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.modern-project-card:hover .project-tag {
    background-color: rgba(15, 125, 255, 0.08);
    color: var(--primary);
}

.project-title {
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.project-title a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--transition);
}

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

.project-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-details-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.project-details-link i {
    margin-left: 6px;
    transition: var(--transition);
}

.project-details-link:hover i {
    transform: translateX(4px);
}

.project-icon-indicator {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.modern-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-testimonial-card.accent-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.modern-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.modern-testimonial-card.accent-card:hover {
    box-shadow: 0 25px 50px rgba(15, 125, 255, 0.35);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(15, 125, 255, 0.12);
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.modern-testimonial-card.accent-card .quote-icon {
    color: rgba(255, 255, 255, 0.12);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    font-style: italic;
}

.modern-testimonial-card.accent-card .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.client-profile-box {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.modern-testimonial-card.accent-card .client-profile-box {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.client-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.modern-testimonial-card.accent-card .client-info h5 {
    color: white;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modern-testimonial-card.accent-card .client-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* MOTION GRAPHICS */
.video-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
}

@media (max-width: 991px) {
    .video-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .video-card-grid {
        grid-template-columns: 1fr !important;
    }
}

.modern-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.modern-video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title-bar {
    padding: 22px 26px;
    background: #ffffff;
}

.video-title-bar h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.video-title-bar h4 a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--transition);
}

.video-title-bar h4 a:hover {
    color: var(--primary);
}

/* EXTRA UTILITIES */
.see-more-container {
    margin-top: 50px;
    text-align: center;
}

.btn-modern-outline {
    font-family: var(--font-modern);
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-modern-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-modern-outline i {
    margin-left: 8px;
}

/* MODERN FILTER TABS */
.portfolio-sort {
    margin-bottom: 50px;
}

.sorting.center-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.sorting li.radio_wrap {
    cursor: pointer;
    position: relative;
    padding: 0;
    margin: 0;
}

.sorting li.radio_wrap input[type="radio"] {
    display: none; /* Hide standard radio input */
}

.sorting li.radio_wrap .radio_mark {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sorting li.radio_wrap:hover .radio_mark {
    color: var(--primary);
    border-color: rgba(15, 125, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sorting li.radio_wrap.active .radio_mark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Reset legacy styles on portfolio-sort list items */
.portfolio-sort ul li {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* MODERN TEAM CARDS */
.modern-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .modern-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .modern-team-grid {
        grid-template-columns: 1fr;
    }
}

.modern-team-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modern-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 125, 255, 0.15);
}

.modern-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, rgba(15, 125, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    z-index: 1;
    border-bottom: 1px solid var(--border-light);
}

.team-avatar-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    width: 140px;
    height: 140px;
}

.team-avatar-wrapper img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.modern-team-card:hover .team-avatar-wrapper img {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(15, 125, 255, 0.2);
}

.team-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    z-index: 2;
}

.team-card-name {
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.team-card-name a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--transition);
}

.team-card-name a:hover {
    color: var(--primary);
}

.team-badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.team-designation-badge {
    display: inline-block;
    padding: 5px 14px;
    background-color: rgba(15, 125, 255, 0.06);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.modern-team-card:hover .team-designation-badge {
    background-color: var(--primary);
    color: #ffffff;
}

.team-card-jobtype {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* MODERN ABOUT PAGE */
.about-split-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-lead-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

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

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(15, 125, 255, 0.08);
    border-radius: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}



.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.about-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none !important;
}

.about-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.about-social-btn.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.about-social-btn.email:hover {
    background: #ea4335;
    border-color: #ea4335;
}

/* MODERN CONTACT PAGE */
.modern-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .modern-contact-grid {
        grid-template-columns: 1fr;
    }
}

.modern-contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.modern-contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 125, 255, 0.15);
}

.contact-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(15, 125, 255, 0.06);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.modern-contact-info-card:hover .contact-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05) rotate(3deg);
}

.contact-card-content h4 {
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-card-content a {
    color: var(--primary);
    text-decoration: none !important;
    font-weight: 600;
}

/* Contact form layout split */
.contact-split-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .contact-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-illustration-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    background: linear-gradient(135deg, #081a2f 0%, #1e3a8a 100%);
    border: 1px solid var(--border-light);
}

.contact-illustration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/Content/assets/img/contact.png') no-repeat center center / cover;
    opacity: 0.85;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

@media (max-width: 575px) {
    .contact-form-card {
        padding: 30px;
    }
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form-card .form-group {
    margin-bottom: 24px;
}

.contact-form-card label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: none !important;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 125, 255, 0.1) !important;
}

.contact-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form-card button[type="submit"] {
    font-family: var(--font-modern);
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0f7dff 0%, #3b96d2 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(15, 125, 255, 0.25);
    cursor: pointer;
}

.contact-form-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(15, 125, 255, 0.4);
}
