/* ==========================================================================
   Shivish Green - Premium Contact Page Styles (Unique Design)
   ========================================================================== */

:root {
    --cp-primary-green: #2e7d32;
    --cp-dark-green: #1b5e20;
    --cp-deep-teal: #1c4537; /* Brand Deep Color */
    --cp-light-green: #e8f5e9;
    --cp-accent-lime: #a3ad49; /* Accent from About page */
    --cp-text-dark: #1a1a1a;
    --cp-text-gray: #555555;
    --cp-white: #ffffff;
    --cp-border: #e0e0e0;
    --cp-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --cp-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --cp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'DM Sans', 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

.premium-contact-section {
    padding: 100px 0;
    background-color: #f4f7f5;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Abstract Background Shapes */
.premium-contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.premium-contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 173, 73, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.pc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* The Main "Card" - Merging Columns */
.pc-row {
    display: flex;
    flex-wrap: wrap;
    background: var(--cp-white);
    border-radius: 30px;
    box-shadow: var(--cp-shadow-lg);
    overflow: hidden;
    min-height: 650px; /* Taller presence */
}

/* ============================
   1. Left Column: The Form
   ============================ */
.pc-form-col {
    flex: 1.3; /* Slightly wider */
    padding: 60px;
    background: var(--cp-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.pc-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--cp-text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
}

.pc-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--cp-primary-green);
    margin-top: 15px;
    border-radius: 2px;
}

.pc-subtitle {
    font-size: 1.4rem;
    color: var(--cp-text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

/* Form Styles */
.pc-form-group {
    margin-bottom: 25px;
    position: relative;
}

.pc-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cp-text-dark);
    margin-bottom: 8px;
    margin-left: 5px;
}

.pc-label span {
    color: #e53935;
}

.pc-input,
.pc-textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    font-size: 1.1rem;
    color: var(--cp-text-dark);
    background-color: #fcfcfc;
    transition: var(--cp-transition);
    font-family: inherit;
}

.pc-textarea {
    min-height: 160px;
    resize: vertical;
}

.pc-input:focus,
.pc-textarea:focus {
    outline: none;
    border-color: var(--cp-primary-green);
    background-color: var(--cp-white);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.1);
    transform: translateY(-2px);
}

.pc-input::placeholder,
.pc-textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

/* Submit Button */
.pc-submit-btn {
    background: var(--cp-deep-teal);
    color: var(--cp-white);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cp-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(28, 69, 55, 0.2);
    margin-top: 10px;
}

.pc-submit-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.pc-submit-btn:hover {
    background: var(--cp-primary-green);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.25);
}

.pc-submit-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* ============================
   2. Right Column: Info Panel
   ============================ */
.pc-info-col {
    flex: 0.9;
    background: var(--cp-deep-teal); /* Dark Green Background */
    padding: 0; /* Reset default padding to use inner card */
    position: relative;
    display: flex;
    flex-direction: column;
    order: 2;
    overflow: hidden;
}

/* Background Pattern on Right Side */
.pc-info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 1;
}

/* Decorative circle overlay */
.pc-info-col::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.pc-info-card {
    background: transparent;
    color: var(--cp-white);
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: none; /* Removed shadow as it's inside */
}

/* Typography on Dark Side */
.pc-info-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--cp-white);
}

.pc-info-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 450px;
}

/* Contact List */
.pc-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.pc-contact-item:last-child {
    margin-bottom: 0;
}

.pc-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px; /* Softer square */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--cp-transition);
    backdrop-filter: blur(5px);
}

.pc-contact-item:hover .pc-icon-box {
    background: var(--cp-white);
    transform: rotate(10deg);
}

.pc-icon-box .pc-icon {
    font-size: 1.5rem;
    color: var(--cp-white);
    transition: var(--cp-transition);
}

.pc-contact-item:hover .pc-icon-box .pc-icon {
    color: var(--cp-deep-teal);
}

.pc-details h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--cp-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.pc-details p,
.pc-details a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: var(--cp-transition);
}

.pc-details a:hover {
    color: var(--cp-white);
    padding-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pc-row {
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
    }

    .pc-form-col {
        order: 2;
        padding: 50px 30px;
    }

    .pc-info-col {
        order: 1;
        padding: 0;
    }
    
    .pc-info-card {
        padding: 50px 30px;
    }

    .pc-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .premium-contact-section {
        padding: 60px 0;
    }

    .pc-form-col {
        padding: 40px 20px;
    }

    .pc-info-card {
        padding: 40px 20px;
    }

    .pc-title {
        font-size: 1.8rem;
    }

    .pc-info-title {
        font-size: 1.8rem;
    }

    .pc-icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .pc-icon-box .pc-icon {
        font-size: 1.4rem;
    }
}
