/* Under Development Page Styles */

.dev-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dev-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    gap: 20px;
    margin-top: 5vh;
}

.dev-icon {
    color: #0277bd;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dev-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0277bd;
    margin: 0;
    letter-spacing: 2px;
}

.dev-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffffd0;
    margin: 0;
    letter-spacing: 1.5px;
}

.dev-description {
    font-size: 1.5rem;
    color: #ffffffa0;
    margin: 0;
    letter-spacing: 1px;
}

/* Color Blob Animation */
.color-blob-top {
    position: absolute;
    top: 200px;
    right: 230px;
    width: 300px;
    height: 500px;
    background-color: #003cff;
    filter: blur(320px);
    z-index: -1;
    animation: blobAnimation 18s infinite alternate ease-in-out;
    transform-origin: center;
}

@keyframes blobAnimation {
    0% {
        transform: scale(1) rotate(0deg) translateY(0);
        background-color: #003cff;
        width: 300px;
        height: 500px;
    }
    50% {
        transform: scale(1.1) rotate(50deg) translateY(-50px);
        background-color: #9900ff;
        width: 200px;
        height: 800px;
    }
    100% {
        transform: scale(1) rotate(0deg) translateY(60px);
        background-color: #031cff;
        width: 900px;
        height: 100px;
    }
}

/* Info Section */
.info-section {
    margin-top: 8vh;
    margin-bottom: 8vh;
}

.info-card {
    background: #222222a0;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 119, 189, 0.1) 0%, rgba(2, 119, 189, 0) 50%);
    z-index: 0;
    pointer-events: none;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card h2,
.info-card h3 {
    color: #0277bd;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.info-card h2 {
    font-size: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
}

.info-card p {
    color: #ffffffa0;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-card strong {
    color: #ffffffd0;
}

.info-detail {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ffffff20;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.leadership-item {
    margin-bottom: 1.5rem;
}

.leadership-item:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.contact-header {
    font-size: 3rem;
    font-weight: 700;
    color: #0277bd;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-intro {
    font-size: 1.3rem;
    color: #ffffffa0;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #222222a0;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-person h3 {
    color: #ffffffd0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.contact-location,
.contact-time {
    color: #ffffffa0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
}

.contact-button svg {
    flex-shrink: 0;
}

.whatsapp-section {
    margin-top: 4rem;
}

.whatsapp-card {
    background: #222222a0;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-card h3 {
    color: #0277bd;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.whatsapp-card p {
    color: #ffffffa0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
}

/* Footer */
.dev-footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid #ffffff20;
    margin-top: 8vh;
}

.dev-footer p {
    color: #ffffffa0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-note {
    color: #0277bd;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Gradient Border Effect */
.gr-border {
    position: relative;
}

.gr-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #0277bd, #9900ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dev-title {
        font-size: 3rem;
    }

    .dev-subtitle {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dev-container {
        padding: 0 1rem;
    }

    .dev-hero {
        min-height: 50vh;
        margin-top: 3vh;
    }

    .dev-title {
        font-size: 2.5rem;
    }

    .dev-subtitle {
        font-size: 1.5rem;
    }

    .dev-description {
        font-size: 1.2rem;
    }

    .contact-header {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .contact-card,
    .whatsapp-card {
        padding: 1.5rem;
    }

    .color-blob-top {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .dev-title {
        font-size: 2rem;
    }

    .dev-subtitle {
        font-size: 1.3rem;
    }

    .dev-description {
        font-size: 1rem;
    }

    .contact-header {
        font-size: 2rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }
}
