/* Connect Page Styles */

/* Hero Section */
.connect-hero {
    padding: 180px 0 100px;
    margin-top: var(--header-height);
    background: linear-gradient(150deg,rgba(48, 164, 213, 0.95) , rgba(147, 211, 95, 0.95) , rgba(48, 164, 213, 0.95));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bg-pattern-connect {
    background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.connect-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.connect-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.connect-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-connections {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.connection-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 200px;
}

.connection-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.connection-stat i {
    font-size: 2.5rem;
    color: white;
}

.connection-stat h3 {
    font-size: 2.2rem;
    color: white;
    margin: 0;
    font-weight: 800;
}

.connection-stat p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Channels */
.contact-channels {
    padding: 100px 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.channel-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.channel-card:nth-child(1) {
    border-top-color: var(--green);
}

.channel-card:nth-child(2) {
    border-top-color: var(--blue);
}

.channel-card:nth-child(3) {
    border-top-color: #ff9f43;
}

.channel-card:nth-child(4) {
    border-top-color: #9c88ff;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.channel-card:nth-child(2) .channel-icon {
    background: linear-gradient(135deg, var(--blue), #9c88ff);
}

.channel-card:nth-child(3) .channel-icon {
    background: linear-gradient(135deg, #ff9f43, #ffbe76);
}

.channel-card:nth-child(4) .channel-icon {
    background: linear-gradient(135deg, #9c88ff, #8c7ae6);
}

.channel-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.channel-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.channel-contacts {
    margin-bottom: 25px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--green);
    width: 20px;
}

.btn-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.btn-channel:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 193, 228, 0.3);
    color: white;
}

/* Connect Form Section */
.connect-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.05), rgba(110, 193, 228, 0.05));
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    padding: 40px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.form-intro p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-highlights {
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight span {
    color: white;
    font-weight: 500;
}

.connect-form {
    padding: 40px;
}

.form-header {
    margin-bottom: 40px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--green);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--text-main);
    font-weight: 600;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.purpose-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.purpose-option {
    cursor: pointer;
}

.purpose-option input {
    display: none;
}

.purpose-option input:checked + .option-content {
    border-color: var(--green);
    background: rgba(120, 176, 75, 0.05);
}

.option-content {
    background: var(--bg-main);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.option-content:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
}

.option-content i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 15px;
}

.option-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.option-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: white;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(120, 176, 75, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.checkbox-option input {
    width: auto;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-prev,
.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-prev {
    background: #f8f9fa;
    color: var(--text-main);
    border: 2px solid #e0e0e0;
}

.btn-prev:hover {
    background: #e9ecef;
    border-color: var(--blue);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 193, 228, 0.3);
}

.form-progress-indicator {
    margin-top: 40px;
    text-align: center;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 3px;
    width: 33.33%;
    transition: width 0.5s ease;
}

.progress-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Team Connect */
.team-connect {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.member-role {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 0.9rem;
}

.member-contact i {
    font-size: 1rem;
}

/* Office Locations */
.office-locations {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.05), rgba(110, 193, 228, 0.05));
}

.locations-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.location-map {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 500px;
    position: relative;
    overflow: hidden;
}

.map-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e7f0 100%);
    border-radius: 10px;
    position: relative;
    border: 2px solid rgba(110, 193, 228, 0.3);
}

.map-point {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.map-point:hover {
    transform: translate(-50%, -50%) scale(1.5);
}

.map-point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.point-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.map-point:hover .point-label {
    opacity: 1;
    top: -45px;
}

.locations-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-detail {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: none;
}

.location-detail.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.location-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-detail h3 i {
    color: var(--green);
}

.location-address {
    margin-bottom: 25px;
}

.location-address p {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
}

.location-address strong {
    min-width: 80px;
    color: var(--text-main);
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.location-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 176, 75, 0.1);
    color: var(--green);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-features span i {
    font-size: 0.9rem;
}

/* Social Connect */
.social-connect {
    padding: 100px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    border-top: 4px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-card.facebook {
    border-top-color: #1877f2;
}

.social-card.instagram {
    border-top-color: #e4405f;
}

.social-card.linkedin {
    border-top-color: #0077b5;
}

.social-card.youtube {
    border-top-color: #ff0000;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.social-card.facebook .social-icon {
    background: #1877f2;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-card.linkedin .social-icon {
    background: #0077b5;
}

.social-card.youtube .social-icon {
    background: #ff0000;
}

.social-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.social-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-handle {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-signup {
    margin-top: 70px;
    text-align: center;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    padding: 50px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(120, 176, 75, 0.2);
}

.newsletter-signup h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.newsletter-signup p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(110, 193, 228, 0.3);
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--green);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 193, 228, 0.3);
}

.form-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    animation: modalSlideUp 0.3s ease forwards;
}

@keyframes modalSlideUp {
    to {
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.btn-modal {
    background: var(--green);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-modal:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 193, 228, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .connect-hero-title {
        font-size: 3rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-intro {
        padding: 40px 40px 20px;
    }
}

@media (max-width: 992px) {
    .connect-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-connections {
        gap: 20px;
    }
    
    .connection-stat {
        min-width: 180px;
        padding: 15px 20px;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map {
        height: 400px;
    }
    
    .purpose-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .connect-hero {
        padding: 150px 0 80px;
    }
    
    .connect-hero-title {
        font-size: 2rem;
    }
    
    .connect-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-connections {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .connection-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .connect-hero-title {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .form-intro,
    .connect-form {
        padding: 30px 25px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-signup {
        padding: 30px 20px;
    }
    
    .form-progress {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .form-progress::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        gap: 15px;
    }
    
    .step-number {
        margin-bottom: 0;
    }
}