/**********************************/
/*** DuraRock Custom Styles     ***/
/**********************************/

/* Body padding for floating CTA bar */
body{
	padding-bottom: 75px;
}

/* Brand Colors Override */
:root{
	--primary-color: #050505;
	--accent-color: #830c0f;
	--accent-secondary-color: #d8161b;
	--white-color: #ffffff;
	--text-color: #575757;
	--error-color: #d8161b;
}

/* Update accent color uses */
.btn-highlighted,
.btn-default:hover,
header.main-header.main-header-gold .main-menu ul li a:hover,
header.main-header.main-header-gold .main-menu ul li a:focus{
	background-color: var(--accent-secondary-color) !important;
	border-color: var(--accent-secondary-color) !important;
	color: var(--white-color) !important;
}

.btn-default{
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.btn-default:hover{
	background-color: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

/* Wizard Form Styles */
.wizard-form-gold{
	background: var(--white-color);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wizard-form-header{
	margin-bottom: 30px;
	text-align: center;
}

.wizard-form-header h3{
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-family: var(--accent-font);
}

.wizard-form-header p{
	font-size: 16px;
	color: var(--text-color);
	margin: 0;
}

.wizard-form-body{
	position: relative;
	min-height: 350px;
}

.wizard-step{
	display: none;
	animation: fadeIn 0.4s ease-in-out;
}

.wizard-step.active{
	display: block;
}

@keyframes fadeIn{
	from{
		opacity: 0;
		transform: translateY(10px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

.wizard-step-title{
	margin-bottom: 30px;
}

.wizard-step-title .step-number{
	display: inline-block;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}

.wizard-step-title h4{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	font-family: var(--accent-font);
}

.wizard-options{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

.wizard-option{
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	border: 2px solid #e5e5e5;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.wizard-option:hover{
	border-color: var(--accent-secondary-color);
	background: #fff5f5;
	transform: translateX(4px);
}

.wizard-option.selected{
	border-color: var(--accent-secondary-color);
	background: #fff5f5;
}

.wizard-option-icon{
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
	border-radius: 12px;
	color: var(--white-color);
	font-size: 28px;
	flex-shrink: 0;
}

.wizard-option-content h5{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 4px;
	font-family: var(--accent-font);
}

.wizard-option-content p{
	font-size: 14px;
	color: var(--text-color);
	margin: 0;
}

.wizard-input-group{
	margin-top: 24px;
}

.wizard-input-group label{
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.wizard-input-group input{
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e5e5e5;
	border-radius: 8px;
	font-size: 16px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.wizard-input-group input:focus{
	outline: none;
	border-color: var(--accent-secondary-color);
}

.error-message{
	margin-top: 12px;
	padding: 12px 16px;
	background: #fff5f5;
	border-left: 4px solid var(--accent-secondary-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.error-message i{
	color: var(--accent-secondary-color);
	font-size: 18px;
}

.error-message span{
	font-size: 14px;
	color: var(--accent-color);
}

.wizard-buttons{
	display: flex;
	gap: 12px;
	margin-top: 32px;
}

.btn-wizard{
	flex: 1;
	padding: 16px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--accent-font);
}

.btn-back{
	background: #f5f5f5;
	color: var(--primary-color);
}

.btn-back:hover{
	background: #e5e5e5;
}

.btn-submit{
	background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
	color: var(--white-color);
}

.btn-submit:hover{
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(216, 22, 27, 0.3);
}

.wizard-success{
	text-align: center;
	padding: 40px 20px;
}

.success-icon{
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 50%;
	font-size: 40px;
	color: var(--white-color);
}

.wizard-success h4{
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
	font-family: var(--accent-font);
}

.wizard-success p{
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 24px;
}

/* Gallery Popup Enhancement */
.gallery-popup{
	position: relative;
	display: block;
	overflow: hidden;
}

.gallery-popup::after{
	content: '\f06e';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-size: 32px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	opacity: 0;
	z-index: 2;
}

.gallery-popup:hover::after{
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

/* Video Gallery Section */
.video-gallery-section{
	padding: 100px 0;
	background: var(--bg-color);
}

.video-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.video-item{
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.video-item:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail{
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	background: #000;
	overflow: hidden;
}

.video-thumbnail img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	font-size: 24px;
	z-index: 2;
	transition: all 0.3s ease;
	cursor: pointer;
}

.video-play-btn:hover{
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 8px 25px rgba(216, 22, 27, 0.4);
}

.video-item-content{
	padding: 20px;
	background: var(--white-color);
}

.video-item-content h4{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 8px;
	font-family: var(--accent-font);
}

.video-item-content p{
	font-size: 14px;
	color: var(--text-color);
	margin: 0;
}

/* Services Section */
#services .collection-item-gold{
	transition: all 0.3s ease;
}

#services .collection-item-gold:hover{
	transform: translateY(-8px);
}

/* Process Section */
#process .what-we-do-gold{
	background: var(--bg-color);
}

/* Contact Section */
#contact{
	background: var(--primary-color);
}

/* Floating CTA Bar */
.floating-cta-bar{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
	z-index: 999;
	padding: 12px 0;
	animation: slideUp 0.5s ease-out;
}

@keyframes slideUp{
	from{
		transform: translateY(100%);
		opacity: 0;
	}
	to{
		transform: translateY(0);
		opacity: 1;
	}
}

.floating-cta-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.floating-cta-text h3{
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	margin: 0 0 3px;
	font-family: var(--accent-font);
	display: flex;
	align-items: center;
	gap: 10px;
}

.floating-cta-text h3 i{
	font-size: 24px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse{
	0%, 100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}

.floating-cta-text p{
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-weight: 500;
}

.btn-floating-cta{
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--white-color);
	color: var(--accent-color);
	padding: 14px 30px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	border: 3px solid transparent;
}

.btn-floating-cta:hover{
	background: var(--primary-color);
	color: var(--white-color);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	border-color: var(--white-color);
}

.btn-floating-cta i{
	font-size: 24px;
	animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring{
	0%, 100%{
		transform: rotate(0deg);
	}
	10%, 30%{
		transform: rotate(-15deg);
	}
	20%, 40%{
		transform: rotate(15deg);
	}
	50%{
		transform: rotate(0deg);
	}
}

.btn-floating-cta .btn-text{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.3;
}

.btn-floating-cta .btn-text strong{
	font-size: 16px;
	display: block;
}

.btn-floating-cta .btn-text small{
	font-size: 13px;
	opacity: 0.8;
	font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 991px){
	.wizard-form-gold{
		padding: 30px 20px;
	}
	
	.wizard-form-header h3{
		font-size: 24px;
	}
	
	.wizard-step-title h4{
		font-size: 20px;
	}
	
	.wizard-option{
		padding: 20px;
	}
	
	.wizard-option-icon{
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
	
	.floating-cta-content{
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.floating-cta-bar{
		padding: 15px 0;
	}
	
	.floating-cta-text h3{
		font-size: 20px;
		justify-content: center;
	}
	
	.floating-cta-text p{
		font-size: 13px;
	}
	
	.btn-floating-cta{
		padding: 15px 30px;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 767px){
	.wizard-buttons{
		flex-direction: column;
	}
	
	.video-grid{
		grid-template-columns: 1fr;
	}
	
	.floating-cta-text h3{
		font-size: 18px;
	}
	
	.floating-cta-text h3 i{
		font-size: 22px;
	}
	
	.floating-cta-text p{
		font-size: 12px;
	}
	
	.btn-floating-cta{
		padding: 14px 25px;
		gap: 10px;
	}
	
	.btn-floating-cta i{
		font-size: 24px;
	}
	
	.btn-floating-cta .btn-text strong{
		font-size: 16px;
	}
	
	.btn-floating-cta .btn-text small{
		font-size: 12px;
	}
}

/* Gallery Slider Styles */
.gallery-slider-gold{
	margin-top: 40px;
	padding: 0 20px;
}

.gallery-swiper-gold{
	padding-bottom: 60px;
	position: relative;
}

.gallery-item-gold{
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
}

.gallery-item-gold:hover{
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item-gold figure{
	margin: 0;
	position: relative;
	padding-bottom: 75%; /* 4:3 Aspect Ratio */
	overflow: hidden;
	background: #f5f5f5;
}

.gallery-item-gold figure a{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 2;
}

.gallery-item-gold figure a:before{
	content: '\f00e'; /* Font Awesome magnifying glass icon */
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-size: 40px;
	color: #fff;
	z-index: 3;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}

.gallery-item-gold figure a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(131, 12, 15, 0.85);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.gallery-item-gold:hover figure a:before{
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.gallery-item-gold:hover figure a:after{
	opacity: 1;
}

.gallery-item-gold figure img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
	z-index: 1;
}

.gallery-item-gold:hover figure img{
	transform: translate(-50%, -50%) scale(1.1);
}

/* Swiper Navigation Buttons */
.gallery-swiper-gold .swiper-button-next,
.gallery-swiper-gold .swiper-button-prev{
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	color: var(--white-color);
	transition: all 0.3s ease;
}

.gallery-swiper-gold .swiper-button-next:after,
.gallery-swiper-gold .swiper-button-prev:after{
	font-size: 20px;
	font-weight: 900;
}

.gallery-swiper-gold .swiper-button-next:hover,
.gallery-swiper-gold .swiper-button-prev:hover{
	background: var(--accent-secondary-color);
	transform: scale(1.1);
}

/* Swiper Pagination */
.gallery-swiper-gold .swiper-pagination{
	bottom: 20px;
}

.gallery-swiper-gold .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	background: #ddd;
	opacity: 1;
	transition: all 0.3s ease;
}

.gallery-swiper-gold .swiper-pagination-bullet-active{
	background: var(--accent-color);
	width: 30px;
	border-radius: 6px;
}

/* Responsive Gallery Slider */
@media (max-width: 991px){
	.gallery-slider-gold{
		padding: 0 10px;
	}
	
	.gallery-swiper-gold .swiper-button-next,
	.gallery-swiper-gold .swiper-button-prev{
		width: 40px;
		height: 40px;
	}
	
	.gallery-swiper-gold .swiper-button-next:after,
	.gallery-swiper-gold .swiper-button-prev:after{
		font-size: 16px;
	}
}

@media (max-width: 767px){
	.gallery-item-gold figure{
		padding-bottom: 100%; /* Square aspect ratio for mobile */
	}
	
	.gallery-swiper-gold .swiper-button-next,
	.gallery-swiper-gold .swiper-button-prev{
		display: none;
	}
}
