/* फुटरसाठी स्वतंत्र स्टाईल्स */
.footer-section {
    width: 100%;
    /* एक सुंदर आणि सॉफ्ट ऑफ-व्हाईट / क्रीम बॅकग्राउंड कलर */
    background-color: #f7f9fa; 
    padding: 80px 0 50px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    border-top: 1px solid #eef2f5;
    background-image: url('palm-tree-silhouette.png'); /* माडाच्या झाडाचा बॅकग्राउंड फोटो */
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.footer-col { flex: 1; }
.brand-col { max-width: 350px; }

.footer-logo img {
    height: 105px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568; /* सॉफ्ट डार्क ग्रे कलर (डोळ्यांना त्रास होत नाही) */
    margin-bottom: 30px;
    text-align: justify;
}

.social-circles { display: flex; gap: 15px; }

.circle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease; /* सॉफ्ट इफेक्टसाठी */
}

/* सोशल मीडिया आयकॉन्स अधिक आकर्षक केले */
.circle-icon.fb { background-color: #3b5998; }
.circle-icon.fb svg { width: 18px; fill: #ffffff; }
.circle-icon.fb:hover { background-color: #2d4373; }

.circle-icon.ig { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}
.circle-icon.ig svg { width: 18px; fill: #ffffff; }
.circle-icon.ig:hover { opacity: 0.9; }

.footer-col h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #1a202c; /* सॉफ्ट ब्लॅक */
    margin-bottom: 25px;
    font-weight: 600;
}

.links-col { max-width: 200px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0; /* सॉफ्ट बॉर्डर */
}

.arrow-icon { width: 16px; height: 16px; fill: #718096; margin-right: 8px; transition: transform 0.2s; }
.footer-links a { text-decoration: none; color: #4a5568; font-size: 15px; transition: color 0.2s; }

/* लिंकवर होव्हर केल्यास सॉफ्ट चेंज */
.footer-links li:hover .arrow-icon { transform: translateX(3px); fill: #1a202c; }
.footer-links li:hover a { color: #1a202c; }

.contact-col { max-width: 380px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.contact-icon { width: 20px; height: 20px; margin-top: 2px; }
.contact-icon svg { width: 100%; height: 100%; fill: #718096; }
.contact-item p, .contact-item a { color: #4a5568; text-decoration: none; font-size: 15px; line-height: 1.5; }
.contact-item a:hover { color: #1a202c; }

@media (max-width: 850px) {
    .footer-container { flex-direction: column; gap: 30px; }
    .footer-section { background-image: none; padding: 50px 0 40px 0; }
    .brand-col, .links-col, .contact-col { max-width: 100%; }
}