/* Add here all your css styles (customizations) */

a:hover {
	text-decoration: none;
}

.bg-brown {
	background: #362a25;
}
.bg-brown-gradient {
	background: #5b3507; /* Old browsers */
	background: -moz-linear-gradient(top, #5b3507 0%, #370c02 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #5b3507 0%, #370c02 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(
		to bottom,
		#5b3507 0%,
		#370c02 100%
	); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b3507', endColorstr='#370c02',GradientType=0 ); /* IE6-9 */
}
.bg-sunburst {
	background: #fee903;
	background: -webkit-radial-gradient(center, #fee903, #e50401);
	background: -moz-radial-gradient(center, #fee903, #e50401);
	background: radial-gradient(ellipse at center, #fee903, #e50401);
}
.bg-sunburst-2 {
	background: rgb(168, 41, 44);
	background: linear-gradient(
		81deg,
		rgba(168, 41, 44, 1) 0%,
		rgba(248, 120, 33, 1) 19%,
		rgba(236, 216, 2, 1) 40%,
		rgba(254, 233, 3, 1) 55%,
		rgba(248, 120, 33, 1) 79%,
		rgba(168, 41, 44, 1) 100%
	);
}
.bg-beige {
	background: #f6d0a2;
}
.bg-orange {
	background: #f58114;
}

.g-color-gray-dark-v5 {
	color: #4a4a4a !important;
}
.g-brd-gray-light-v4 {
	border-color: #d6d6d6 !important;
}

@keyframes flash {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
.flash-text {
	animation: flash 1.5s infinite;
}

/*.navbar-nav {
	padding-top: 15px;
	padding-bottom: 15px;
}*/
.navbar-nav {
	margin: 0 auto;
	/* Center horizontally */
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navbar-expand-lg .navbar-collapse {
	padding-top: 5px;
}
.navbar-nav a {
	font-size: 17px !important;
	font-weight: 700 !important;
}

.logo-header {
	width: 230px !important;
	position: absolute;
	top: 10px;
	left: 20px;
	z-index: 100;
}

.banner-text {
	font-size: 36px;
	background-color: blue;
	position: absolute;
	width: 100%;
	top: 50%;
	text-align: center;
}

.page-slider-title {
	font-size: 35px !important;
	line-height: 35px !important;
}

table {
	width: 100%;
}

.specsTable {
	border: 1px solid #b3adad;
	border-collapse: collapse;
	padding: 8px;
	width: 100%;
}
.specsTable th {
	border: 1px solid #b3adad;
	padding: 8px;
	background: #ca2a02;
	color: #ffffff;
}
.specsTable td {
	border: 1px solid #b3adad;
	text-align: center;
	padding: 8px;
	background: #ffffff;
	color: #313030;
}

@media (max-width: 1250px) {
	.logo-header {
		width: 130px !important;
		top: 40px;
	}
}

@media (max-width: 991px) {
	.hamburger-box {
		margin-top: -20px !important;
	}
	.logo-header {
		z-index: 0 !important;
	}
	/*.navbar {
		padding:0 !important;
	}*/
}

.gfn-swap {
	visibility: hidden;
}
.gfn-swap.gfn-ready {
	visibility: visible;
}

/* NEW: AI Assistant CTA */
.ai-cta-box {
	background: linear-gradient(135deg, #271f1b 0%, #362a25 100%);
	border-radius: 20px;
	padding: 50px 40px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 140, 0, 0.2);
}

.ai-cta-box::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.ai-cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.ai-cta-pulse {
	width: 8px;
	height: 8px;
	background: #4ade80;
	border-radius: 50%;
	animation: aiCtaPulse 2s infinite;
}

@keyframes aiCtaPulse {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
	}
	50% {
		opacity: 0.8;
		box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
	}
}

.ai-cta-title {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 15px;
	line-height: 1.2;
	position: relative;
}

.ai-cta-subtitle {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.6;
	position: relative;
}

.ai-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 25px;
	position: relative;
}

.ai-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 50px;
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.ai-cta-btn-primary {
	background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
	color: #fff;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.ai-cta-btn-primary:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.ai-cta-btn-phone {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.25);
}

.ai-cta-btn-phone:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	text-decoration: none;
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.ai-cta-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.ai-cta-arrow {
	transition: transform 0.3s ease;
}

.ai-cta-btn-primary:hover .ai-cta-arrow {
	transform: translateX(4px);
}

.ai-cta-divider {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.9rem;
	font-style: italic;
}

.ai-cta-hours {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.ai-cta-hours strong {
	color: #ff8c00;
}

@media (max-width: 768px) {
	.ai-cta-box {
		padding: 35px 25px;
	}
	.ai-cta-title {
		font-size: 1.75rem;
	}
	.ai-cta-subtitle {
		font-size: 1rem;
	}
	.ai-cta-btn {
		padding: 14px 24px;
		font-size: 0.95rem;
		width: 100%;
		justify-content: center;
	}
	.ai-cta-divider {
		display: none;
	}
}
