/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
	--primary-green: #1a5d1a;
	--primary-green-light: #2d7a2d;
	--primary-green-dark: #0f3d0f;
	--secondary-green: #4ade80;
	--accent-green: #22c55e;
	--text-primary: #1f2937;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--bg-primary: #ffffff;
	--bg-secondary: #f9fafb;
	--bg-tertiary: #f3f4f6;
	--border-light: #e5e7eb;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--e-global-color-text);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.stats-grid h3 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 8px;
}

.stats-grid p {
	font-size: 18px;
	opacity: 0.9;
}

.phone a {
  color: #1a5d1a !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  text-decoration: none !important;
}

/* Footer */
.footer-section h3 {
  margin-bottom: 20px;
  color: #22c55e;
  font-weight: 600;
  font-size: 18px;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
  font-size: 15px;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section p {
  color: #d1d5db;
  font-size: 15px;
}

/* Hero Background Grid */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* Buttons */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-radius: 8px;
}

.btn-secondary {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.product-link {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
}

.product-link:hover {
	color: var(--primary-green-light);
	gap: 12px;
}

.product-link::after {
	content: '→';
	transition: transform 0.2s ease;
}

/* FAQ Section */
.faq-section {
	background: var(--bg-secondary);
	padding: 30px 0;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--bg-primary);
	border-radius: 12px;
	margin-bottom: 16px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--primary-green);
}

.faq-question {
	padding: 24px 32px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--border-light);
}

.faq-question:hover {
	background: var(--bg-secondary);
}

.faq-question h3 {
	font-size: 18px;
	color: var(--text-primary);
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.faq-icon {
	font-size: 24px;
	color: var(--primary-green);
	font-weight: 300;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 32px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 24px 32px;
	max-height: 200px;
}

.faq-answer p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

/* Breadcrumb */
.breadcrumb {
	background: var(--bg-secondary);
	padding: 16px 0;
	border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.breadcrumb a:hover {
	color: var(--primary-green-light);
}

.breadcrumb span {
	color: var(--text-secondary);
	margin: 0 8px;
}

.door-type-card {
	background: var(--bg-primary);
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.door-type-card img 
{
	border-radius: 8px 8px 0px 0px;
}

.door-type-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-green);
}

.door-type-card p {
	padding: 0px 20px;
}

.feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.feature-list li {
	padding: 12px 0;
	color: var(--text-secondary);
	position: relative;
	padding-left: 32px;
	font-size: 16px;
	line-height: 1.6;
}

.feature-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-green);
	font-weight: bold;
	font-size: 18px;
	top: 12px;
}

.showcase-item {
	background: var(--bg-primary);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: all 0.3s ease;
	padding: 15px;
}

.showcase-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-green);
}

.showcase-image img {
	box-shadow: var(--shadow-sm);
	border-radius: 8px;
}

.project-year {
	font-size: 19px;
	color: var(--primary-green);
	font-weight: 700;
	opacity: 0.8;
}