﻿/* ================================================
   PAGES CSS - About Us & Contact Us
   Clean, Modern, Professional
   ================================================ */

/* ================================================
   PAGE HERO
   ================================================ */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
}

.page-hero .hero-gradient.blue {
    background: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
}

[data-theme="dark"] .page-hero .hero-gradient {
    background: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
}

[data-theme="dark"] .page-hero .hero-gradient.blue {
    background: linear-gradient(135deg, #205b5f 0%, #0f2224 100%);
}

.page-hero .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 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='1'%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");
}

.page-hero .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.page-hero .hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(134, 183, 186, 0.5);
    top: -100px;
    left: -50px;
    animation: pulse 8s ease-in-out infinite;
}

.page-hero .hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(32, 154, 162, 0.4);
    bottom: -50px;
    right: -20px;
    animation: pulse 10s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge.blue {
    background: rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Divider - Modern Geometric Design */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}

.hero-divider .divider-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--bg-body);
    clip-path: polygon(
        0 70%,
        5% 65%,
        15% 75%,
        25% 60%,
        35% 72%,
        45% 55%,
        55% 68%,
        65% 50%,
        75% 65%,
        85% 48%,
        95% 62%,
        100% 55%,
        100% 100%,
        0 100%
    );
}

.hero-divider .divider-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(32, 154, 162, 0.3) 20%,
        rgba(32, 154, 162, 0.8) 50%,
        rgba(32, 154, 162, 0.3) 80%,
        transparent 100%
    );
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ================================================
   PAGE CONTENT
   ================================================ */
.page-content {
    padding: 80px 0;
    background: var(--bg-body);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-main {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.content-main p {
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    margin-top: 60px;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.value-icon.purple { background: linear-gradient(135deg, #86b7ba, #209aa2); }
.value-icon.green { background: linear-gradient(135deg, #86b7ba, #205b5f); }
.value-icon.blue { background: linear-gradient(135deg, #205b5f, #205b5f); }

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.values-list li i {
    color: #86b7ba;
    font-size: 0.9rem;
}

/* ================================================
   ABOUT STATS
   ================================================ */
.about-stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.about-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-stats .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-stats .stat-icon i {
    font-size: 1.75rem;
    color: white;
}

.about-stats .stat-icon.purple { background: linear-gradient(135deg, #86b7ba, #209aa2); box-shadow: 0 10px 30px rgba(32, 154, 162, 0.3); }
.about-stats .stat-icon.green { background: linear-gradient(135deg, #86b7ba, #205b5f); box-shadow: 0 10px 30px rgba(134, 183, 186, 0.3); }
.about-stats .stat-icon.blue { background: linear-gradient(135deg, #205b5f, #205b5f); box-shadow: 0 10px 30px rgba(32, 91, 95, 0.3); }
.about-stats .stat-icon.gold { background: linear-gradient(135deg, #e78a56, #d47840); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.about-stats .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ================================================
   PAGE CTA
   ================================================ */
.page-cta {
    padding: 80px 0;
    background: var(--bg-body);
}

.page-cta .cta-box {
    position: relative;
    background: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
    border-radius: 32px;
    padding: 60px;
    overflow: hidden;
}

.page-cta .cta-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.page-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-cta .cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.page-cta .cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: white;
    color: #209aa2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #209aa2;
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-4px);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 80px 0 120px;
    background: var(--bg-body);
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-icon.purple { background: linear-gradient(135deg, #86b7ba, #209aa2); }
.contact-icon.green { background: linear-gradient(135deg, #86b7ba, #205b5f); }
.contact-icon.blue { background: linear-gradient(135deg, #205b5f, #205b5f); }
.contact-icon.gold { background: linear-gradient(135deg, #e78a56, #d47840); }

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-details a,
.contact-details span {
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--purple-primary);
}

.contact-info-card .social-links {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-info-card .social-links h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #86b7ba, #209aa2);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.alert-success-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    background: rgba(134, 183, 186, 0.1);
    border: 1px solid rgba(134, 183, 186, 0.3);
    border-radius: 12px;
    color: #205b5f;
    margin-bottom: 1.5rem;
}

.alert-success-custom i {
    font-size: 1.25rem;
}

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

.modern-input,
.modern-textarea {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    width: 100%;
}

.modern-input:focus,
.modern-textarea:focus {
    background: var(--card-bg);
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 4px rgba(32, 154, 162, 0.1);
    outline: none;
}

.modern-input::placeholder,
.modern-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #209aa2, #209aa2);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .page-hero {
        min-height: 350px;
        padding: 120px 0 80px;
    }

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

    .page-cta .cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding: 100px 0 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
