:root {
    --wd-primary-color: #258412;
    --wd-secondary-color: #4ECDC4;
    --wd-heading-color: #242424;
    --wd-text-color: #292929;
    --wd-light-text-color: #757575;
    --wd-background-light: #ffffff;
    --wd-background-grey: #f9f9f9;
    --wd-border-color: rgba(0, 0, 0, 0.1);
    --wd-border-radius: 8px;
    --wd-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --white: #FFFFFF;
}

/* Creative Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(120deg, #ffffff, #f8f9fa);
    padding: 140px 0 80px;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 132, 18, 0.03) 0%, rgba(37, 132, 18, 0.08) 100%);
    top: -100px;
    left: -150px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.04) 0%, rgba(78, 205, 196, 0.08) 100%);
    bottom: -80px;
    right: -80px;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 132, 18, 0.05) 0%, rgba(37, 132, 18, 0.1) 100%);
    top: 60%;
    left: 15%;
    animation: float 18s ease-in-out infinite 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, rgba(78, 205, 196, 0.1) 100%);
    top: 20%;
    right: 10%;
    animation: float 20s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(2deg);
    }
    50% {
        transform: translate(0, 15px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, 5px) rotate(-2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    padding-right: 20px;
}

/* .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--wd-heading-color);
} */

.highlight-text {
    color: var(--wd-primary-color);
    position: relative;
    display: inline-block;
}



.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--wd-text-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
}

.direct-contact span {
    color: var(--wd-light-text-color);
    margin-bottom: 5px;
}

.phone-link {
    color: var(--wd-heading-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--wd-primary-color);
}

.hero-visual-column {
    position: relative;
    height: 440px;
}

.contact-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image {
    max-width: 100%;
    max-height: 100%;
    animation: slight-bounce 6s ease-in-out infinite;
}

@keyframes slight-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card {
    position: absolute;
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.floating-card-1 {
    top: 20%;
    left: -5%;
    animation: float-card 5s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation: float-card 5s ease-in-out infinite 1s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1), rgba(78, 205, 196, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-primary-color);
    font-size: 18px;
}

.card-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--wd-heading-color);
}

.contact-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-down-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--wd-light-text-color);
    margin-bottom: 8px;
}

.scroll-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down-link:hover .scroll-text {
    color: var(--wd-primary-color);
}

.scroll-down-link:hover .scroll-icon {
    background-color: var(--wd-primary-color);
    color: white;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--wd-background-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: var(--wd-border-radius);
    padding: 30px;
    box-shadow: var(--wd-box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-policy ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 28px;
    color: var(--wd-primary-color);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--wd-heading-color);
}

.contact-info-card p {
    color: var(--wd-text-color);
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--wd-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--wd-primary-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px 0;
    background-color: var(--wd-background-grey);
    position: relative;
    overflow: hidden;
}

.form-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.form-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.form-shape {
    position: absolute;
    border-radius: 50%;
}

.form-shape-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 132, 18, 0.03) 0%, rgba(37, 132, 18, 0.08) 100%);
    top: -30px;
    right: -30px;
}

.form-shape-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.04) 0%, rgba(78, 205, 196, 0.08) 100%);
    bottom: 50px;
    left: -20px;
}

.form-shape-3 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.05) 0%, rgba(255, 222, 89, 0.1) 100%);
    top: 30%;
    right: 10%;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--wd-heading-color);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--wd-light-text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
}

.textarea-group, .select-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wd-primary-color);
    opacity: 0.7;
    z-index: 2;
}

.textarea-group .input-icon, 
.select-group .input-icon {
    top: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: var(--wd-heading-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--wd-primary-color);
    box-shadow: 0 0 0 3px rgba(37, 132, 18, 0.1);
    background-color: var(--white);
}

.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon,
.form-group select:focus + .input-icon {
    color: var(--wd-primary-color);
    opacity: 1;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--wd-primary-color), #4ECDC4);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 132, 18, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 132, 18, 0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wd-light-text-color);
    font-size: 0.9rem;
}

.badge i {
    color: var(--wd-primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--wd-background-light);
}

.section-heading.text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--wd-border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--wd-box-shadow);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: var(--wd-heading-color);
}

.faq-question i {
    color: var(--wd-primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: var(--wd-text-color);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--wd-border-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .floating-card-1 {
        left: 0;
    }
    
    .floating-card-2 {
        right: 0;
    }
}

@media (max-width: 992px) {
    .contact-hero-section {
        padding: 120px 0 80px;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 80px;
    }
    
  .hero-text-column {
        padding-right: 0;
        order: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-visual-column {
        order: 0;
        height: 360px;
    }
    
    .hero-description {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .floating-card-1 {
        top: 10%;
        left: 5%;
    }
    
    .floating-card-2 {
        bottom: 10%;
        right: 5%;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-title-content h1 {
        font-size: 2.5rem;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-header h2 {
        font-size: 2.2rem;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 20px 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-visual-column {
        height: 320px;
    }
    
    .floating-card {
        padding: 12px;
    }
    
    .card-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-hero-section {
        padding: 100px 0 70px;
        min-height: auto;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-form-column {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer-policy ul {
        display: flex;
        gap: 10px !important;
        list-style: none;
    }
    .footer-policy li a {
        font-size: 13px;
        padding: 5px;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .floating-card-1,
    .floating-card-2 {
        display: none;
    }
    
    .hero-visual-column {
        height: 280px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-icon i {
        font-size: 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
} 