/* ===========================
   CONTACT PAGE ADVANCED REDESIGN
   Professional Body Sections
   =========================== */

/* About Section Advanced Redesign */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 170, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about-text {
    position: relative;
}

.about-intro h3 {
    font-size: 36px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.about-intro h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    border-radius: 2px;
}

.about-intro .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-top: 30px;
    font-weight: 500;
}

.about-details {
    margin-top: 30px;
}

.about-details p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stats .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.about-stats .stat-item:hover::before {
    transform: scaleX(1);
}

.about-stats .stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.about-stats .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-values {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.about-values h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.check-list li i {
    color: #00cc66;
    font-size: 20px;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.4);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.image-badge i {
    font-size: 28px;
    margin-bottom: 8px;
}

.image-badge span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

/* Contact Info Cards Advanced Redesign */
.contact-info-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 170, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.4s ease;
}

.contact-card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
    opacity: 0.3;
    transform: scale(1.2);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card-icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.whatsapp-card .contact-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-card .contact-card-icon::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #00aaff;
    transform: translateX(4px);
}

.contact-link:hover::after {
    width: 100%;
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link::after {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

/* Contact Form Section Advanced Redesign */
.contact-form-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e7ef;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-policy-section {
    background: #f8fbff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-top: 30px;
}

.privacy-policy-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.privacy-policy-text p strong {
    color: #0066cc;
    font-size: 16px;
}

.consent-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: #0066cc;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0066cc;
}

.privacy-note {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 16px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.privacy-note i {
    color: #0066cc;
    margin-top: 2px;
}

.privacy-note a {
    color: #0066cc;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff 0%, #0066ff 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-submit::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;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, #00aaff 0%, #0077ff 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .btn-text {
    position: relative;
    z-index: 1;
}

.btn-submit i {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #00cc66;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-grid {
        gap: 60px;
    }
    
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .check-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-intro h3 {
        font-size: 28px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-values {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
}
