/* Contact Section Styles */
.contact-section {
    padding: 140px 0 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(250,251,252,1) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin: 0 auto 100px;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.contact-header:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a4a0a, #4CAF50);
    margin: 30px auto 0;
    border-radius: 2px;
}

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #0a4a0a;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.contact-header p {
    color: #5a6a7e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 80px;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.contact-content:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0.08) 15%, 
        rgba(0,0,0,0.08) 85%, 
        transparent 100%);
    margin-left: -40px;
}

/* Contact Info Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}

/* Contact Method Cards */
.contact-method {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(10, 74, 10, 0.1);
}

.contact-method h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #0a4a0a;
    margin: 0 0 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.contact-method h3 i {
    margin-right: 12px;
    font-size: 1.5rem;
    color: #0a4a0a;
    opacity: 0.9;
}

.contact-method h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #0a4a0a, #4CAF50);
    border-radius: 3px;
    transition: all 0.4s ease;
}

.contact-method:hover h3:after {
    width: 60px;
    background: linear-gradient(90deg, #4CAF50, #0a4a0a);
}

.contact-method p, 
.contact-method a {
    color: #5a6a7e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: flex-start;
}

.contact-method a:last-child,
.contact-method p:last-child {
    margin-bottom: 0;
}

.contact-method p:before,
.contact-method a:before {
    content: '•';
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 10px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 2px;
}

.contact-method a:hover {
    color: #0a4a0a;
    transform: translateX(3px);
}

/* Specific icon overrides */
.contact-method:nth-child(1) h3 i { color: #4CAF50; }
.contact-method:nth-child(2) h3 i { color: #2196F3; }
.contact-method:nth-child(3) h3 i { color: #FF9800; }
.contact-method:nth-child(4) h3 i { color: #9C27B0; }

.contact-method a:hover {
    color: #0a4a0a;
    text-decoration: underline;
}

.whatsapp-cta {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-bottom: -5px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white !important;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.whatsapp-btn:hover:before {
    width: 100%;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    background: #20bd5a;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-box .icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 74, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0a4a0a;
    font-size: 24px;
}

.info-box h3 {
    color: #0a4a0a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Contact Form Styles */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0a4a0a, #4CAF50);
    opacity: 0.9;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    color: #0a4a0a;
    margin: 0 0 35px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #0a4a0a, #4CAF50);
    border-radius: 2px;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #0a4a0a;
}

.form-group {
    position: relative;
    margin-bottom: 40px;
    padding-top: 5px;
    transition: all 0.3s ease;
}

.form-group:focus-within {
    transform: translateY(-1px);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 0 12px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #2d3748;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a4a0a;
    box-shadow: 0 2px 0 0 #0a4a0a;
}

/* Custom select dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6a7e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 16px;
    padding-right: 30px;
    cursor: pointer;
}

/* Textarea specific styles */
.form-group textarea {
    min-height: 120px;
    resize: vertical;
    padding: 16px 0;
    line-height: 1.6;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6a7e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
    padding-right: 20px;
    cursor: pointer;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 10px;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 16px;
    color: #8c98a4;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform-origin: left top;
    padding-left: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a4a0a;
    box-shadow: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 0;
    font-size: 0.85rem;
    color: #0a4a0a;
    background: #ffffff;
    padding: 0 6px;
    transform: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-left: -6px;
    border-radius: 4px;
    box-shadow: 0 0 0 4px #fff, 0 2px 4px rgba(0,0,0,0.05);
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #0a4a0a 0%, #0d5c0d 100%);
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(10, 74, 10, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}

.btn-submit:hover:before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0d5c0d 0%, #0f6e0f 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 74, 10, 0.25);
}

.btn-submit:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(10, 74, 10, 0.2);
}

.btn-submit:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-section {
        padding: 100px 0 60px;
    }
    
    .contact-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-content:before {
        display: none;
    }
    
    .contact-form {
        margin-top: 0;
        padding: 35px 25px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-info {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        padding: 0 5px;
    }
    
    .contact-method {
        padding: 28px 24px;
        margin-bottom: 20px;
    }
    
    .whatsapp-cta {
        margin-top: 20px;
    }
    
    .whatsapp-btn {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        padding: 16px 20px;

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 40px;
    }
    
    .contact-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .contact-header p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .contact-header:after {
        width: 60px;
        height: 3px;
        margin: 20px auto 0;
    }
    
    .contact-content {
        padding: 0 10px;
        gap: 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
        margin: 0 -10px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 30px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 15px 0 12px;
    }
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .info-box {
        padding: 20px;
    }
}
/* Contact Section Layout */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Rest of your existing styles... */