.con-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fffdef 0%, #fbfbfbe5 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Heart Background with SVG */
.con-heart-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.con-heart-svg {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: con-float-hearts 12s linear infinite;
    opacity: 0.6;
}

/* Heart SVG animations with different timing */
.con-heart-svg:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.con-heart-svg:nth-child(2) {
    left: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.con-heart-svg:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.con-heart-svg:nth-child(4) {
    left: 35%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.con-heart-svg:nth-child(5) {
    left: 45%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.con-heart-svg:nth-child(6) {
    left: 55%;
    animation-delay: 5s;
    animation-duration: 15s;
}

.con-heart-svg:nth-child(7) {
    left: 65%;
    animation-delay: 0.5s;
    animation-duration: 12s;
}

.con-heart-svg:nth-child(8) {
    left: 75%;
    animation-delay: 2.5s;
    animation-duration: 8s;
}

.con-heart-svg:nth-child(9) {
    left: 85%;
    animation-delay: 4.5s;
    animation-duration: 16s;
}

.con-heart-svg:nth-child(10) {
    left: 95%;
    animation-delay: 1.5s;
    animation-duration: 10s;
}

@keyframes con-float-hearts {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
        transform: translateY(90vh) rotate(45deg) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateY(50vh) rotate(180deg) scale(1);
    }

    90% {
        opacity: 0.8;
        transform: translateY(10vh) rotate(315deg) scale(0.9);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

/* Pulsing heart animation for variety */
.con-heart-svg:nth-child(even) {
    animation-name: con-pulse-hearts;
}

@keyframes con-pulse-hearts {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: translateY(90vh) rotate(30deg) scale(1.2);
    }

    25% {
        transform: translateY(75vh) rotate(90deg) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateY(50vh) rotate(180deg) scale(1.4);
    }

    75% {
        transform: translateY(25vh) rotate(270deg) scale(0.9);
    }

    90% {
        opacity: 0.6;
        transform: translateY(10vh) rotate(330deg) scale(1.1);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0.2);
        opacity: 0;
    }
}

.con-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.con-left-section {
    background: linear-gradient(135deg, #2d8a6b 0%, #06d85ee6 100%);
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.con-left-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: con-rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes con-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.con-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.con-subtitle {
    color: #e2cc07;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.con-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.con-title-highlight {
    color: #e2cc07;
    position: relative;
}

.con-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2cc07;
    border-radius: 2px;
}

.con-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

.con-contact-info {
    position: relative;
    z-index: 2;
}

.con-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.con-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.con-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    flex-shrink: 0;
}

.con-email-icon {
    background: linear-gradient(135deg, #e2cc07, #d4b806);
}

.con-phone-icon {
    background: linear-gradient(135deg, #06d85ee6, #2d8a6b);
}

.con-office-icon {
    background: linear-gradient(135deg, #2d8a6b, #06d85ee6);
}

.con-contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.con-contact-details p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.con-right-section {
    padding: 60px 40px;
    background: #fff;
}

.con-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.con-form-group {
    position: relative;
}

.con-form-group.con-full-width {
    grid-column: 1 / -1;
}

.con-input,
.con-textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.con-input:focus,
.con-textarea:focus {
    border-color: #2d8a6b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 138, 107, 0.1);
    transform: translateY(-1px);
}

.con-input::placeholder,
.con-textarea::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.con-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.con-form-group.con-full-width {
    margin-bottom: 20px;
}


.con-submit-btn {
    background: linear-gradient(135deg, #e2cc07, #d4b806);
    color: #2d8a6b;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 25px;
}

.con-submit-btn:hover {
    background: linear-gradient(135deg, #d4b806, #c2a505);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 204, 7, 0.3);
}

.con-submit-btn:active {
    transform: translateY(0);
}

.con-success-message {
    background: linear-gradient(135deg, #4fd1c7, #36b5aa);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    animation: con-slideIn 0.5s ease-out;
}

@keyframes con-slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.con-success-message.con-show {
    display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .con-container {
        grid-template-columns: 1fr;
        margin: 10px;
    }

    .con-left-section,
    .con-right-section {
        padding: 40px 30px;
    }

    .con-title {
        font-size: 28px;
    }

    .con-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .con-contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .con-contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        font-size: 16px;
    }

    .con-contact-details h3 {
        font-size: 16px;
    }

    .con-contact-details p {
        font-size: 13px;
    }

    .con-heart-svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .con-body {
        padding: 10px;
    }

    .con-left-section,
    .con-right-section {
        padding: 30px 20px;
    }

    .con-title {
        font-size: 24px;
    }

    .con-input,
    .con-textarea {
        padding: 15px;
        font-size: 14px;
    }

    .con-submit-btn {
        padding: 15px 30px;
        font-size: 14px;
        width: 100%;
    }

    .con-heart-svg {
        width: 15px;
        height: 15px;
    }
}