/* Connecting with SRRI SPK Section - Additional Styles */
/* Primary Color: #26c976 (Green) */
/* Secondary Color: #FFD700 (Yellow) */

.spk-connect-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.spk-connect-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Connect Header */
.spk-connect-header {
    text-align: center;
    margin-bottom: 60px;
}

.spk-connect-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spk-connect-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

/* Connect Grid */
.spk-connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Connect Cards */
.spk-connect-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.spk-connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #26c976, #1fb566);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.spk-connect-card.visit-card::before {
    background: linear-gradient(90deg, #FFD700, #FFC700);
}

.spk-connect-card:hover::before {
    transform: scaleX(1);
}

.spk-connect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.connect-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #26c976, #1fb566);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    box-shadow: 0 15px 40px rgba(38, 201, 118, 0.3);
    transition: all 0.4s ease;
}

.connect-card-icon.yellow {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.spk-connect-card:hover .connect-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.spk-connect-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.connect-intro {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Connect List */
.connect-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.connect-list li {
    font-size: 15px;
    color: #666666;
    line-height: 2;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.connect-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #26c976;
    font-size: 16px;
}

.visit-card .connect-list li i {
    color: #FFD700;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
}

.social-btn span {
    flex: 1;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.instagram i {
    color: #e6683c;
}

.social-btn.instagram:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: white;
}

.social-btn.facebook i {
    color: #1877f2;
}

.social-btn.facebook:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

/* Visit CTA */
.visit-cta {
    text-align: center;
    margin-top: 30px;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.visit-btn i {
    font-size: 20px;
}

.visit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFC700, #FFD700);
}

.visit-note {
    font-size: 14px;
    color: #999999;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive Design for Connect Section */
@media (max-width: 1024px) {
    .spk-connect-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .spk-connect-section {
        padding: 60px 0;
    }

    .spk-connect-header {
        margin-bottom: 40px;
    }

    .spk-connect-header h2 {
        font-size: 2rem;
    }

    .spk-connect-subtitle {
        font-size: 1rem;
    }

    .spk-connect-card {
        padding: 40px 30px;
    }

    .connect-card-icon {
        width: 75px;
        height: 75px;
        font-size: 36px;
    }

    .spk-connect-card h3 {
        font-size: 1.6rem;
    }

    .connect-intro {
        font-size: 1rem;
    }

    .connect-list li {
        font-size: 14px;
    }

    .social-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .social-btn i {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .visit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .spk-connect-card {
        padding: 30px 20px;
    }

    .spk-connect-header h2 {
        font-size: 1.6rem;
    }

    .social-btn span {
        font-size: 13px;
    }
}