/* SPK Contact / Thank You Section Styles */
:root {
    --spkContact-primary: #71B100;
    --spkContact-secondary: #0F2B46;
    --spkContact-bg: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    --spkContact-white: #ffffff;
    --spkContact-text: #555555;
    --spkContact-text-dark: #333333;
}

.spkContact_section {
    position: relative;
    padding: 100px 20px 120px;
    background: var(--spkContact-bg);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: var(--spkContact-text);
    z-index: 1;
}

.spkContact_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Abstract Shapes */
.spkContact_shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

.spkContact_shape1 {
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: var(--spkContact-primary);
    border-radius: 50%;
    filter: blur(80px);
}

.spkContact_shape2 {
    bottom: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: var(--spkContact-secondary);
    border-radius: 50%;
    filter: blur(100px);
}

/* 1. Hero Thank You Area */
.spkContact_hero {
    text-align: center;
    margin-bottom: 80px;
}

.spkContact_logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: inline-block;
}

.spkContact_tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--spkContact-text);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spkContact_title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--spkContact-secondary), var(--spkContact-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* 2. Contact Card */
.spkContact_cardWrapper {
    display: flex;
    justify-content: center;
}

.spkContact_card {
    display: flex;
    background: var(--spkContact-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Left Image Side */
.spkContact_imageSide {
    flex: 0 0 40%;
    background: linear-gradient(135deg, var(--spkContact-secondary) 0%, #1a3c5e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative pattern on left side */
.spkContact_imageSide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.spkContact_imageContainer {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 8px solid var(--spkContact-primary);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    background: #fff;
}

.spkContact_profileImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Info Side */
.spkContact_infoSide {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spkContact_name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--spkContact-secondary);
    margin-bottom: 5px;
}

.spkContact_designation {
    font-size: 1rem;
    color: var(--spkContact-primary);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Details List */
.spkContact_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spkContact_item {
    display: flex;
    align-items: flex-start;
}

.spkContact_iconBox {
    width: 45px;
    height: 45px;
    min-width: 45px;
    /* prevent shrinking */
    background: rgba(113, 177, 0, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--spkContact-primary);
    font-size: 1.2rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.spkContact_item:hover .spkContact_iconBox {
    background: var(--spkContact-primary);
    color: var(--spkContact-white);
    transform: rotate(5deg);
}

.spkContact_details {
    display: flex;
    flex-direction: column;
}

.spkContact_label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.spkContact_value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--spkContact-text-dark);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.spkContact_value:hover {
    color: var(--spkContact-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .spkContact_card {
        flex-direction: column;
        max-width: 500px;
    }

    .spkContact_imageSide {
        padding: 40px 20px;
    }

    .spkContact_infoSide {
        padding: 40px 30px;
    }

    .spkContact_title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .spkContact_title {
        font-size: 2.5rem;
    }

    .spkContact_imageContainer {
        width: 180px;
        height: 180px;
    }

    .spkContact_name {
        font-size: 1.5rem;
    }
}