/* ===================================================================
   PROFILE PAGES - ABOUT & CONTACT
   =================================================================== */

/* About Hero Section - Dark Theme */
.about-hero-premium {
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

.about-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(0, 143, 215, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.about-hero-content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Stats Grid - Glass Effect */
.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-premium:hover {
    background: rgba(0, 143, 215, 0.15);
    border-color: rgba(0, 143, 215, 0.3);
    transform: translateY(-4px);
}

.stat-number-premium {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-premium {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Vision Mission Cards - Dark Theme */
.vision-mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0f29 0%, #0d1333 100%);
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 143, 215, 0.1);
}

.vm-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.vm-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.vm-card-icon.primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

.vm-card-icon.accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

.vm-card-icon i {
    font-size: 28px;
    color: #fff;
}

.vm-card-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.vm-card p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.vm-card ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.vm-card ul li {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.vm-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Values Section - Dark Theme */
.values-section-premium {
    background: linear-gradient(180deg, #0d1333 0%, #070b1f 100%);
    padding: 100px 0;
    position: relative;
}

.values-section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 143, 215, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-heading-premium {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-heading-premium h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-heading-premium p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.value-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 143, 215, 0.1);
}

.value-icon-premium {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 143, 215, 0.35);
}

.value-card-premium:hover .value-icon-premium {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 143, 215, 0.5);
}

.value-icon-premium i {
    font-size: 36px;
    color: #fff;
}

.value-card-premium h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-card-premium p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section - Dark Theme */
.timeline-section-premium {
    padding: 100px 0;
    background: linear-gradient(180deg, #070b1f 0%, #0a0f29 100%);
}

.timeline-premium {
    position: relative;
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 4px;
}

.timeline-item-premium {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

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

.timeline-year-premium {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 143, 215, 0.15);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent-color);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 143, 215, 0.3);
}

.timeline-content-premium {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.timeline-content-premium:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
    border-color: rgba(0, 143, 215, 0.3);
}

.timeline-item-premium:nth-child(odd) .timeline-content-premium {
    margin-right: auto;
}

.timeline-item-premium:nth-child(even) .timeline-content-premium {
    margin-left: auto;
}

.timeline-content-premium h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.timeline-content-premium p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section Premium */
.cta-section-premium {
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 143, 215, 0.2) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-content-premium h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content-premium p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-premium {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 143, 215, 0.3);
}

.btn-cta-accent:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 143, 215, 0.4);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Page Styles - Dark Theme */
.contact-hero-premium {
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}

.contact-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(0, 143, 215, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-hero-premium h1 {
    position: relative;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    z-index: 1;
}

.contact-hero-premium p {
    position: relative;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

/* Contact Methods Cards - Dark Theme */
.contact-methods-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0f29 0%, #0d1333 100%);
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 143, 215, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 143, 215, 0.1);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 143, 215, 0.35);
}

.contact-method-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-method-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-method-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.btn-contact-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 143, 215, 0.35);
}

.btn-contact-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 143, 215, 0.45);
}

.btn-contact-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 2px solid rgba(0, 143, 215, 0.5);
    transition: all 0.3s ease;
}

.btn-contact-outline:hover {
    background: rgba(0, 143, 215, 0.15);
    color: var(--accent-light);
    transform: translateY(-2px);
}

/* Contact Form Section - Dark Theme */
.contact-form-section {
    padding: 0 0 100px;
    background: linear-gradient(180deg, #0d1333 0%, #070b1f 100%);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
}

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

.form-group-premium label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.form-control-premium {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control-premium::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 143, 215, 0.15);
}

.form-control-premium.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback-premium {
    color: #f87171;
    font-size: 0.875rem;
    margin-top: 6px;
}

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

.btn-submit-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: #fff;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 35, 126, 0.35);
}

/* Map Container */
.map-container-premium {
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.map-container-premium iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Address Card */
.address-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.address-card-premium h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.address-item {
    display: flex;
    margin-bottom: 20px;
}

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

.address-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    box-shadow: 0 4px 15px rgba(0, 143, 215, 0.3);
}

.address-item-icon i {
    font-size: 20px;
    color: #fff;
}

.address-item-content h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.address-item-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.social-links-premium {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-links-premium a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links-premium a.facebook {
    background: #e7f3ff;
    color: #1877f2;
}

.social-links-premium a.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.social-links-premium a.instagram {
    background: #fce4ec;
    color: #e4405f;
}

.social-links-premium a.instagram:hover {
    background: #e4405f;
    color: #fff;
}

.social-links-premium a.linkedin {
    background: #e8f4f8;
    color: #0077b5;
}

.social-links-premium a.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

/* Profile Page Responsive */
@media (max-width: 992px) {
    .about-hero-premium {
        padding: 80px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .timeline-premium::before {
        left: 20px;
    }
    
    .timeline-year-premium {
        left: 20px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 0.875rem;
    }
    
    .timeline-content-premium {
        width: calc(100% - 80px);
        margin-left: 60px !important;
    }
    
    .timeline-item-premium:nth-child(odd) .timeline-content-premium,
    .timeline-item-premium:nth-child(even) .timeline-content-premium {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1.0625rem;
    }
    
    .stat-number-premium {
        font-size: 2.25rem;
    }
    
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .vm-card {
        padding: 32px 24px;
    }
    
    .values-section-premium {
        padding: 60px 0;
    }
    
    .section-heading-premium h2 {
        font-size: 2rem;
    }
    
    .timeline-section-premium {
        padding: 60px 0;
    }
    
    .cta-content-premium h2 {
        font-size: 2rem;
    }
    
    .cta-content-premium p {
        font-size: 1.0625rem;
    }
    
    .contact-hero-premium h1 {
        font-size: 2.25rem;
    }
    
    .contact-methods-section {
        padding: 60px 0;
    }
}


