/*
Theme Name: Enviro
Text Domain: Enviro
Version: 2.9
Tested up to: 6.8
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */
/* Section container */
.contact-us-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}
/* Mobile-first: everything stacked by default */

/* For tablets and larger screens */
@media (max-width: 768px) {
  .contact-us-page {
   padding: 0;
  }

}


/* Headings */
.contact-us-page h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-align: center;
	padding: 0 12px;
}

/* Intro text */
.contact-us-page > p {
  font-size: 1rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
	padding: 0 12px;
}

/* Quote form wrapper */
.quote-form {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.75rem;
}

/* Sub-heading */
.quote-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Remove default ul/li styles */
.quote-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quote-form li {
  margin-bottom: 1rem;
}

/* Input + Textarea styling */
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #111827;
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

/* Textarea */
.quote-form textarea {
  resize: vertical;
  max-height: 200px;
}

/* Submit button */
.quote-form .submit-btn {
  display: inline-block;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: #059669;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.quote-form .submit-btn:hover {
  background: #135E19;
  transform: translateY(-2px);
}

.quote-form .submit-btn:active {
  transform: translateY(0);
}
.home-contactform .quote-form{
	padding: 0;
	background: transparent;
}
.home-contactform .quote-form textarea{
	max-height: 80px;
}

.home-contactform .quote-form input[type="text"],
.home-contactform .quote-form input[type="tel"],
.home-contactform .quote-form input[type="email"],
.home-contactform .quote-form textarea {
  padding: 0.7rem 1rem;
}
/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */