/* Enhanced Pages CSS - Contact and About Pages */

/* ===== ENHANCED CONTACT PAGE STYLES ===== */

/* Background Elements */
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.contact-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-shape {
    position: absolute;
    opacity: 0.06;
    animation: contactShapeFloat 25s ease-in-out infinite;
}

.contact-shape-1 {
    top: 15%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: var(--epsf-blue);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.contact-shape-2 {
    top: 75%;
    left: 85%;
    width: 15px;
    height: 15px;
    background: var(--kinetic-blue);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: -8s;
}

.contact-shape-3 {
    top: 45%;
    left: 5%;
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -16s;
}

.contact-shape-4 {
    top: 85%;
    left: 20%;
    width: 18px;
    height: 18px;
    background: var(--epsf-blue);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: -24s;
}

@keyframes contactShapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.06;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-8px) rotate(180deg);
        opacity: 0.08;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.09;
    }
}

.contact-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-float {
    position: absolute;
    color: var(--epsf-blue);
    opacity: 0.1;
    animation: contactFloat 20s ease-in-out infinite;
}

.contact-float-1 {
    top: 25%;
    right: 15%;
    font-size: 24px;
    animation-delay: 0s;
}

.contact-float-2 {
    top: 65%;
    left: 10%;
    font-size: 20px;
    animation-delay: -7s;
}

.contact-float-3 {
    top: 35%;
    right: 25%;
    font-size: 22px;
    animation-delay: -14s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.15;
    }
}

/* Enhanced Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.contact-header-icon {
    margin-bottom: 2rem;
}

.contact-icon-container {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--epsf-blue), var(--kinetic-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-icon-container i {
    font-size: 32px;
    color: white;
    z-index: 2;
}

.contact-icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--epsf-blue), var(--kinetic-blue));
    border-radius: 50%;
    opacity: 0.3;
    animation: contactIconGlow 3s ease-in-out infinite;
}

@keyframes contactIconGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--epsf-blue), var(--kinetic-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--epsf-blue), transparent);
    border-radius: 2px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--epsf-blue);
    border-radius: 50%;
    animation: decorationPulse 2s ease-in-out infinite;
}

@keyframes decorationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Enhanced Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Enhanced Contact Info */
.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item.enhanced {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    border-color: var(--epsf-blue);
}

.contact-item-icon {
    flex-shrink: 0;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--epsf-blue), var(--kinetic-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-item.enhanced:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-item-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item-content a {
    color: var(--epsf-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--kinetic-blue);
}

.contact-item-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Enhanced Social Links */
.social-links-contact.enhanced {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.social-links-contact.enhanced h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.social-links-contact.enhanced p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-icons.enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 212, 0.15);
    border-color: var(--epsf-blue);
    color: var(--epsf-blue);
}

.social-icon i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Enhanced Contact Form */
.contact-form.enhanced {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.enhanced-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.enhanced {
    position: relative;
}

.form-group.enhanced label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.form-group.enhanced label i {
    color: var(--epsf-blue);
    font-size: 14px;
}

.form-group.enhanced input,
.form-group.enhanced textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-white);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group.enhanced input:focus,
.form-group.enhanced textarea:focus {
    outline: none;
    border-color: var(--epsf-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.1);
}

.form-group-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--epsf-blue), var(--kinetic-blue));
    transition: width 0.3s ease;
}

.form-group.enhanced input:focus + .form-group-decoration,
.form-group.enhanced textarea:focus + .form-group-decoration {
    width: 100%;
}

.form-actions {
    margin-top: 1rem;
}

.submit-btn.enhanced {
    position: relative;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--epsf-blue), var(--kinetic-blue));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn.enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 82, 212, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn.enhanced:hover .btn-glow {
    left: 100%;
}

/* Contact Map Section */
.contact-map-section {
    margin-top: 4rem;
}

.map-container {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--epsf-blue), var(--kinetic-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.map-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.map-coordinates {
    margin-top: 1rem;
}

.map-coordinates span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--epsf-blue);
    font-weight: 500;
}

/* ===== ENHANCED ABOUT PAGE STYLES ===== */

/* Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.about-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-shape {
    position: absolute;
    opacity: 0.04;
    animation: aboutShapeFloat 35s ease-in-out infinite;
}

.about-shape-1 {
    top: 15%;
    left: 12%;
    width: 16px;
    height: 16px;
    background: var(--kinetic-blue);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.about-shape-2 {
    top: 75%;
    left: 85%;
    width: 12px;
    height: 12px;
    background: var(--epsf-blue);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: -12s;
}

.about-shape-3 {
    top: 45%;
    left: 88%;
    width: 14px;
    height: 14px;
    background: var(--accent-blue);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -24s;
}

.about-shape-4 {
    top: 85%;
    left: 8%;
    width: 10px;
    height: 10px;
    background: var(--kinetic-blue);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: -36s;
}

@keyframes aboutShapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.04;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-12px) rotate(180deg);
        opacity: 0.06;
    }
    75% {
        transform: translateY(-28px) rotate(270deg);
        opacity: 0.07;
    }
}

.about-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-float {
    position: absolute;
    color: var(--kinetic-blue);
    opacity: 0.08;
    animation: aboutFloat 30s ease-in-out infinite;
}

.about-float-1 {
    top: 25%;
    right: 18%;
    font-size: 24px;
    animation-delay: 0s;
}

.about-float-2 {
    top: 65%;
    left: 12%;
    font-size: 20px;
    animation-delay: -10s;
}

.about-float-3 {
    top: 50%;
    right: 8%;
    font-size: 22px;
    animation-delay: -20s;
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.12;
    }
}

/* Enhanced About Header */
.about-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    padding: 2rem 0;
}

.about-header-icon {
    margin-bottom: 3rem;
}

.about-icon-container {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(67, 100, 247, 0.2);
}

.about-icon-container i {
    font-size: 36px;
    color: white;
    z-index: 2;
}

.about-icon-glow {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    border-radius: 50%;
    opacity: 0.25;
    animation: aboutIconGlow 4s ease-in-out infinite;
}

@keyframes aboutIconGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Enhanced About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
    align-items: start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Enhanced About Text */
.about-text.enhanced {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text-section {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kinetic-blue), var(--epsf-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-text-section:hover::before {
    transform: scaleX(1);
}

.about-text-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 82, 212, 0.15);
    border-color: var(--kinetic-blue);
}

.text-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(67, 100, 247, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-text-section:hover .section-icon::before {
    left: 100%;
}

.about-text-section:hover .section-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(67, 100, 247, 0.4);
}

.text-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: left;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Enhanced Features */
.features.enhanced {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.features-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kinetic-blue), var(--epsf-blue));
}

.features-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.features-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature.enhanced {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.feature.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kinetic-blue), var(--epsf-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature.enhanced:hover::before {
    transform: scaleX(1);
}

.feature.enhanced:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 82, 212, 0.15);
    border-color: var(--kinetic-blue);
}

.feature-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(67, 100, 247, 0.25);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature.enhanced:hover .feature-icon::before {
    left: 100%;
}

.feature-icon-glow {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    border-radius: 14px;
    opacity: 0.25;
    animation: featureIconGlow 4s ease-in-out infinite;
    filter: blur(6px);
}

@keyframes featureIconGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.feature.enhanced:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(67, 100, 247, 0.35);
}

.feature.enhanced h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature.enhanced p {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.feature-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kinetic-blue), var(--epsf-blue));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.feature.enhanced:hover .feature-decoration {
    width: 50%;
}

/* Enhanced Statistics Section */
.about-stats-section {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 82, 212, 0.12);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kinetic-blue), var(--epsf-blue));
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kinetic-blue), var(--epsf-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 82, 212, 0.2);
    border-color: var(--kinetic-blue);
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(67, 100, 247, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover .stat-icon::before {
    left: 100%;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(67, 100, 247, 0.4);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--kinetic-blue), var(--epsf-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Enhanced About Divider */
.about-divider.enhanced {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--kinetic-blue), var(--epsf-blue), transparent);
    margin: 4rem 0;
    position: relative;
}

.about-divider.enhanced::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--kinetic-blue);
    border-radius: 50%;
    animation: dividerPulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(67, 100, 247, 0.5);
}

@keyframes dividerPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.4);
        opacity: 0.8;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .about-content {
        gap: 4rem;
        max-width: 1200px;
    }
    
    .about-text.enhanced {
        padding-right: 1.5rem;
    }
    
    .features.enhanced {
        padding-left: 1.5rem;
    }
    
    .about-stats-section {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 900px;
        padding: 0 1rem;
    }
    
    .about-text.enhanced {
        gap: 2rem;
    }
    
    .features.enhanced {
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-title {
        font-size: 3.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-stats-section {
        padding: 2.5rem;
        max-width: 900px;
    }
    
    .text-section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text-section p {
        font-size: 1.1rem;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    .feature.enhanced h3 {
        font-size: 1.3rem;
    }
    
    .feature.enhanced p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact-title,
    .about-title {
        font-size: 3rem;
    }
    
    .contact-subtitle,
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-header {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .about-content {
        gap: 2.5rem;
        margin-bottom: 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-text.enhanced {
        gap: 1.5rem;
    }
    
    .about-text-section {
        padding: 1.5rem;
    }
    
    .text-section-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .text-section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-text-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .features.enhanced {
        gap: 1.5rem;
    }
    
    .features-header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .features-header h2 {
        font-size: 1.8rem;
    }
    
    .features-header p {
        font-size: 0.95rem;
    }
    
    .feature.enhanced {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .feature.enhanced h3 {
        font-size: 1.2rem;
    }
    
    .about-stats-section {
        margin-top: 3rem;
        padding: 2rem;
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .stats-header h2 {
        font-size: 2.2rem;
    }
    
    .stats-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-icons.enhanced {
        grid-template-columns: 1fr;
    }
    
    .contact-form.enhanced {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-title,
    .about-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle,
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-header {
        margin-bottom: 2.5rem;
        padding: 1rem 0;
    }
    
    .about-header-icon {
        margin-bottom: 1.5rem;
    }
    
    .about-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .about-icon-container i {
        font-size: 28px;
    }
    
    .about-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .about-text.enhanced {
        gap: 1.25rem;
    }
    
    .about-text-section {
        padding: 1.25rem;
    }
    
    .text-section-header {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .text-section-header h2 {
        font-size: 1.4rem;
    }
    
    .about-text-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .features.enhanced {
        gap: 1.25rem;
    }
    
    .features-header {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .features-header h2 {
        font-size: 1.6rem;
    }
    
    .features-header p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
    
    .feature.enhanced {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .feature.enhanced h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature.enhanced p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-stats-section {
        margin-top: 2.5rem;
        padding: 1.5rem 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .stats-header {
        margin-bottom: 2rem;
    }
    
    .stats-header h2 {
        font-size: 2rem;
    }
    
    .stats-header p {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .contact-item.enhanced {
        padding: 1.25rem;
    }
    
    .contact-form.enhanced {
        padding: 1.5rem;
    }
    
    .contact-header,
    .about-header {
        margin-bottom: 2rem;
    }
    
    .contact-content,
    .about-content {
        gap: 2rem;
    }
} 