/* Contact Page - Modern & Colorful Design */
/* Theme Color: #26c976 */

.spk-contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.spk-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.spk-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.spk-contact-badge {
    display: inline-block;
    color: #26c976;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.spk-contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333333;
    margin: 0;
}

/* Contact Grid */
.spk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Map Section */
.spk-map-wrapper {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s ease;
}

.spk-map-wrapper:hover {
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.spk-map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Contact Info Section */
.spk-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Contact Card */
.spk-contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spk-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #26c976, #FF8C5A);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.spk-contact-card:hover::before {
    transform: scaleY(1);
}

.spk-contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
}

/* Icon Circle */
.spk-contact-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.spk-contact-card:nth-child(2) .spk-contact-icon-circle {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.spk-contact-card:nth-child(3) .spk-contact-icon-circle {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.spk-contact-card:nth-child(4) .spk-contact-icon-circle {
    background: linear-gradient(135deg, #9C27B0, #AB47BC);
}

.spk-contact-icon-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(1.2);
    animation: pulse-contact 2s ease-in-out infinite;
}

@keyframes pulse-contact {

    0%,
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.spk-contact-card:hover .spk-contact-icon-circle {
    transform: rotate(360deg) scale(1.1);
}

.spk-contact-icon {
    font-size: 26px;
    color: white;
    position: relative;
    z-index: 2;
}

/* Contact Content */
.spk-contact-content {
    flex: 1;
}

.spk-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spk-contact-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.spk-contact-text a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.spk-contact-text a:hover {
    color: #26c976;
}

/* Decorative Elements */
.spk-contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float-contact 10s ease-in-out infinite;
}

@keyframes float-contact {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.spk-contact-shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(102, 187, 106, 0.1));
    top: 10%;
    right: 5%;
}

.spk-contact-shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(66, 165, 245, 0.1));
    bottom: 15%;
    left: 8%;
    animation-delay: -5s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spk-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spk-map-iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .spk-contact-section {
        padding: 60px 0;
    }

    .spk-contact-header {
        margin-bottom: 40px;
    }

    .spk-contact-title {
        font-size: 2rem;
    }

    .spk-contact-grid {
        gap: 30px;
    }

    .spk-map-iframe {
        height: 350px;
    }

    .spk-contact-card {
        padding: 25px 20px;
    }

    .spk-contact-icon-circle {
        width: 50px;
        height: 50px;
    }

    .spk-contact-icon {
        font-size: 22px;
    }
}