/* GAPM 2026 Contact Page - Modern Professional Design */
/* Color Palette:
   Primary Dark Blue: #071D6A
   Secondary Dark Blue: #083281
   Light Blue: #3785C4
   Light Blue dark: #294093
   Accent Red: #FE2020
*/

/* Page Title - Using default styling */

/* Contact Page Section */
.contact-page-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    margin-bottom: 50px;
}

.contact-info-wrapper .row {
    display: flex;
    align-items: stretch;
}

.contact-info-wrapper .row > div {
    display: flex;
    flex-direction: column;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: #071D6A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #294093;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(7, 29, 106, 0.08);
    border: 1px solid rgba(55, 133, 196, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FE2020 0%, #3785C4 50%, #071D6A 100%);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(7, 29, 106, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #071D6A 0%, #3785C4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Card Icon Base Styling Only */

.info-card:hover .card-icon {
    background: linear-gradient(135deg, #FE2020 0%, #071D6A 100%);
    transform: scale(1.1);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    color: #071D6A;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.card-content h5 {
    color: #3785C4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-content p {
    color: #294093;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.contact-link i {
    color: #3785C4;
    font-size: 12px;
    width: 14px;
    flex-shrink: 0;
}

.contact-link a {
    color: #071D6A;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.contact-link a:hover {
    color: #FE2020;
    text-decoration: underline;
}

.availability {
    color: #8a9bb5;
    font-size: 13px;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
}

.org-item {
    margin-bottom: 10px;
}

.org-item strong {
    color: #071D6A;
    font-weight: 700;
    display: block;
    font-size: 15px;
}

.org-item span {
    color: #294093;
    font-size: 13px;
    line-height: 1.4;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    margin-top: 60px;
}

.contact-form-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(7, 29, 106, 0.1);
    border: 1px solid rgba(55, 133, 196, 0.1);
    overflow: hidden;
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FE2020 0%, #3785C4 50%, #071D6A 100%);
}

.form-header {
    background: linear-gradient(135deg, rgba(7, 29, 106, 0.03) 0%, rgba(55, 133, 196, 0.05) 100%);
    padding: 40px 40px 30px;
    text-align: center;
}

.form-header h3 {
    color: #071D6A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #294093;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-new {
    padding: 40px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group {
    padding: 0 15px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #071D6A;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-danger {
    color: #FE2020;
}

.form-control {
    width: 100%;
    border: 2px solid #e8f2ff;
    border-radius: 10px;
    padding: 15px 18px;
    font-size: 15px;
    background: #ffffff;
    color: #294093;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

.form-control:focus {
    border-color: #3785C4;
    box-shadow: 0 0 0 4px rgba(55, 133, 196, 0.1);
    outline: none;
    background: #f8fafe;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #8a9bb5;
    opacity: 1;
    font-style: italic;
}

/* Custom Select - Clean Version */
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff !important;
    background-image: none !important;
    cursor: pointer;
    padding-right: 20px;
}

.custom-select:focus {
    background: #f8fafe !important;
    background-image: none !important;
}

.custom-select option {
    padding: 12px;
    background: #ffffff;
    color: #294093;
    font-size: 15px;
    font-weight: 500;
}

.custom-select option:first-child {
    color: #8a9bb5;
    font-style: italic;
}

/* Textarea */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Submit Button */
.form-submit {
    margin-top: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, #071D6A 0%, #3785C4 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 29, 106, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.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.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #FE2020 0%, #071D6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(254, 32, 32, 0.4);
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .contact-page-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .info-card {
        padding: 22px 18px;
        min-height: 260px;
    }
    
    .form-header {
        padding: 35px 35px 25px;
    }
    
    .contact-form-new {
        padding: 35px;
    }
}

@media (max-width: 991px) {
    .contact-page-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .info-card {
        padding: 20px 16px;
        margin-bottom: 20px;
        min-height: 240px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon i {
        font-size: 18px;
    }
    
    .form-header {
        padding: 30px 30px 20px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .contact-form-new {
        padding: 30px;
    }
    
    .form-control {
        padding: 13px 16px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .contact-page-section {
        padding: 50px 0;
    }
    
    .contact-info-wrapper {
        margin-bottom: 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .info-card {
        padding: 18px 15px;
        margin-bottom: 18px;
        min-height: 220px;
    }
    
    .contact-info-wrapper .row {
        display: block;
    }
    
    .contact-info-wrapper .row > div {
        display: block;
    }
    
    .contact-form-container {
        border-radius: 15px;
        margin: 0 15px;
    }
    
    .form-header {
        padding: 25px 25px 20px;
    }
    
    .form-header h3 {
        font-size: 22px;
    }
    
    .contact-form-new {
        padding: 25px;
    }
    
    .form-row {
        margin: 0;
    }
    
    .form-group {
        padding: 0;
    }
    
    .form-control {
        padding: 12px 15px;
        border-radius: 8px;
    }
    
    .btn-submit {
        padding: 14px 35px;
        font-size: 14px;
        min-width: 180px;
    }
}

@media (max-width: 479px) {
    .contact-page-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .info-card {
        padding: 16px 12px;
        min-height: 200px;
    }
    
    .card-content h4 {
        font-size: 15px;
    }
    
    .contact-form-container {
        margin: 0 10px;
    }
    
    .form-header {
        padding: 20px 20px 15px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .contact-form-new {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 13px;
        min-width: 160px;
    }
}

/* Conference Details Section */
.conference-details-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
    position: relative;
}

.conference-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(55, 133, 196, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(7, 29, 106, 0.05) 0%, transparent 50%);
}

.conference-details-section .auto-container {
    position: relative;
    z-index: 2;
}

.conference-details-section .sec-title {
    margin-bottom: 40px;
}

.conference-details-section .sec-title h2 {
    color: #071D6A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conference-details-section .sec-title .text {
    color: #294093;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.conference-details-section .info-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(7, 29, 106, 0.08);
    border: 1px solid rgba(55, 133, 196, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.conference-details-section .info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FE2020 0%, #3785C4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.conference-details-section .info-block:hover::before {
    transform: scaleX(1);
}

.conference-details-section .info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 29, 106, 0.15);
    border-color: #3785C4;
}

.conference-details-section .info-block .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FE2020 0%, #FF6B6B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.conference-details-section .info-block:hover .icon-box {
    background: linear-gradient(135deg, #071D6A 0%, #3785C4 100%);
    transform: scale(1.05);
}

.conference-details-section .info-block .icon-box i {
    color: #ffffff;
    font-size: 24px;
}

.conference-details-section .info-block h4 {
    color: #071D6A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.conference-details-section .info-block p {
    color: #294093;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #071D6A 0%, #083281 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(55, 133, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-contact-section .auto-container {
    position: relative;
    z-index: 2;
}

.quick-contact-section .content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.quick-contact-section .content .text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.quick-contact-section .phone-info {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-section .phone-info i {
    color: #FE2020;
    font-size: 24px;
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-section .phone-details a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.quick-contact-section .phone-details a:hover {
    color: #FE2020;
}

.quick-contact-section .phone-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
}

.map-section .sec-title {
    margin-bottom: 50px;
    text-align: center;
}

.map-section .sec-title h2 {
    color: #071D6A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-section .sec-title p {
    color: #294093;
    font-size: 16px;
    font-weight: 500;
}

.map-outer {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(7, 29, 106, 0.15);
    border: 4px solid #3785C4;
    position: relative;
}

.map-outer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FE2020, #3785C4, #071D6A, #FE2020);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-outer iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Smooth Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.modern-form-container,
.conference-details-section .info-block {
    animation: fadeInUp 0.8s ease forwards;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-info-card:nth-child(4) {
    animation-delay: 0.3s;
}

.modern-form-container {
    animation-delay: 0.4s;
}

.conference-details-section .info-block:nth-child(2) {
    animation-delay: 0.1s;
}

.conference-details-section .info-block:nth-child(3) {
    animation-delay: 0.2s;
}

.conference-details-section .info-block:nth-child(4) {
    animation-delay: 0.3s;
}

.conference-details-section .info-block:nth-child(5) {
    animation-delay: 0.4s;
}

.card-icon i {
    color: #ffffff;
    font-size: 20px;
} 