/* Custom styles for Hero and Sections without breaking existing design */
.hero_section {
	padding-top: 150px;
	padding-bottom: 80px;
	text-align: center;
}
.hero_title {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
}
.hero_title_sub {
	font-size: 32px;
	font-weight: 600;
	color: #ffffff;
	display: block;
	margin-top: 10px;
}
.hero_subtitle {
	font-size: 24px;
	color: #a0a0a0;
	margin-bottom: 30px;
}
.hero_text {
	font-size: 18px;
	color: #d0d0d0;
	max-width: 800px;
	margin: 0 auto 40px auto;
	line-height: 1.6;
}
.section_block {
	padding: 50px 0;
}
.section_block .row {
    display: flex;
    flex-wrap: wrap;
}
.section_block .row:not(.justify-content-center) > [class*="col-"] {
    display: flex;
}
.section_title {
	font-size: 32px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 40px;
	text-align: center;
}
.feature_box {
	background: rgba(255,255,255,0.05);
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 30px;
	transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    flex: 1; /* Stretch to fill column height */
}
.feature_box:hover {
	transform: translateY(-10px);
	background: rgba(255,255,255,0.08);
    border-color: rgba(251, 153, 2, 0.3);
    box-shadow: 0 10px 30px rgba(251, 153, 2, 0.1);
}
.feature_box h3 {
	font-size: 24px;
	color: #ffffff;
	margin-bottom: 15px;
    transition: color 0.3s ease;
}
.feature_box:hover h3 {
    color: #fb9902;
}
.feature_box p {
	color: #a0a0a0;
	margin-bottom: 0;
    font-size: 16px;
}
.product_block {
	background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.08) 100%);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 60px 40px;
	border-radius: 12px;
	text-align: center;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.product_block:hover {
    border-color: rgba(251, 153, 2, 0.4);
    box-shadow: 0 15px 40px rgba(251, 153, 2, 0.15);
}
.product_title {
	font-size: 28px;
	color: #ffffff;
	margin-bottom: 20px;
}
.product_desc {
	color: #d0d0d0;
	margin-bottom: 30px;
	font-size: 18px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.btn_custom {
	display: inline-block;
	padding: 16px 45px;
	background: #fb9902;
	color: #ffffff !important;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
    border: 2px solid #fb9902;
    font-size: 18px;
    margin-top: 30px;
}
.btn_custom:hover {
	background: #000000;
	color: #fb9902 !important;
	text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 153, 2, 0.4);
}
.btn_outline {
	display: inline-block;
	padding: 16px 45px;
	background: #fb9902;
	color: #ffffff !important;
	font-weight: 600;
	border: 2px solid #fb9902;
	border-radius: 4px;
	transition: all 0.3s ease;
    font-size: 18px;
    margin-top: 30px;
}
.btn_outline:hover {
	background: #000000;
	color: #fb9902 !important;
	text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 153, 2, 0.3);
}

.feature_list {
	margin-bottom: 50px;
}
.feature_item {
	background: rgba(255,255,255,0.02);
	border-left: 4px solid #ffffff;
	padding: 25px 30px;
	margin-bottom: 20px;
	border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}
.feature_item:hover {
    border-left-color: #fb9902;
    background: rgba(251, 153, 2, 0.05);
    transform: translateX(10px);
}
.feature_item h4 {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 10px;
    transition: color 0.3s ease;
}
.feature_item:hover h4 {
    color: #fb9902;
}
.feature_item p {
	color: #a0a0a0;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.5;
}

.how_it_works {
	background: rgba(0,0,0,0.3);
	border-radius: 12px;
	padding: 40px;
	margin: 0 auto 50px auto;
    border: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    max-width: 800px;
}
.how_it_works:hover {
    border-color: rgba(251, 153, 2, 0.2);
    box-shadow: 0 10px 30px rgba(251, 153, 2, 0.05);
}
.step_item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
    transition: transform 0.3s ease;
}
.step_item:hover {
    transform: translateX(5px);
}
.step_item:last-child {
	margin-bottom: 0;
}
.step_number {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	background: #fb9902;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 20px;
	flex-shrink: 0;
    box-shadow: 0 0 15px rgba(251, 153, 2, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step_item:hover .step_number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(251, 153, 2, 0.6);
}
.step_text {
	color: #d0d0d0;
	font-size: 18px;
	padding-top: 6px;
}

.cta_section {
	text-align: center;
	padding: 60px 0 100px 0;
}
.cta_badge {
	display: inline-block;
	padding: 18px 50px;
	background: #fb9902;
	border: 2px solid #fb9902;
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	border-radius: 4px;
	letter-spacing: 1px;
	text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 30px;
}
.cta_badge:hover {
    background: #000000;
    color: #fb9902;
    box-shadow: 0 10px 25px rgba(251, 153, 2, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
}

.gallery_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}
.gallery_item {
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 9/16; /* Vertical aspect ratio for mobile screenshots */
	border: 1px solid rgba(255,255,255,0.1);
	transition: all 0.4s ease;
    position: relative;
}
.gallery_item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
}
.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    background: #000;
    transition: transform 0.5s ease;
    opacity: 0.9;
}
.gallery_item:hover {
	transform: scale(1.03) translateY(-5px);
	border-color: #fb9902;
    box-shadow: 0 15px 30px rgba(251, 153, 2, 0.15);
}
.gallery_item:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.gallery_item a::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery_item:hover a::after {
    opacity: 1;
}
.gallery_item_title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}
.gallery_item:hover .gallery_item_title {
    opacity: 1;
    transform: translateY(0);
}

.policy_container {
	max-width: 800px;
	margin: 0 auto 100px auto;
	background: rgba(255, 255, 255, 0.03);
	padding: 50px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s ease;
}
.policy_container:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.policy_section {
	margin-bottom: 35px;
}
.policy_section h3 {
	font-size: 30px;
	color: #fb9902;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 10px;
}
.policy_section p, .policy_section li {
	color: #d0d0d0;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.policy_section ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 15px;
}

.page_title_centered {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center !important;
    margin-bottom: 40px;
    padding-top: 150px;
    width: 100%;
    display: block;
}

/* Text Links Styling - Scoped to avoid breaking navigation/buttons */
.hero_text a, .product_desc a, .feature_box p a, .feature_item p a, .policy_section p a, .policy_section li a, .contact_list li a:not(.location_title) {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-decoration-color: #ffffff !important;
    border-bottom: none !important; /* Fix double underline from main CSS */
    background: transparent !important; /* Fix orange background from main CSS */
    transition: all 0.3s ease;
}

.hero_text a:hover, .product_desc a:hover, .feature_box p a:hover, .feature_item p a:hover, .policy_section p a:hover, .policy_section li a:hover, .contact_list li a:not(.location_title):hover {
    color: #fb9902 !important;
    text-decoration-color: #fb9902 !important;
    background: transparent !important;
    border-bottom: none !important;
}

.location_title {
    color: #ffffff !important;
    text-decoration: none !important;
}
.location_title:hover {
    color: #fb9902 !important;
}

/* Feedback Modal Styling */
#contact1.modal {
    background: rgba(0, 0, 0, 0.85);
}

#contact1 .modal-content {
    background: #181a1d;
    border: 2px solid #fb9902;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    padding: 10px;
}

#contact1 .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
}

#contact1 .modal-header h4 {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    margin: 0;
}

#contact1 .modal-body {
    padding: 25px 20px;
    text-align: center;
}

/* Modal Close Button */
#contact1 .contactbuttonclose {
    background: #fb9902 !important;
    border: 2px solid #fb9902 !important;
    color: #ffffff !important;
    padding: 10px 40px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: auto !important;
    display: inline-block !important;
    height: auto !important;
}

#contact1 .contactbuttonclose:hover {
    background: transparent !important;
    color: #fb9902 !important;
    box-shadow: 0 5px 15px rgba(251, 153, 2, 0.2) !important;
}

/* Mobile Modal Adjustments */
@media (max-width: 767px) {
    #contact1 .modal-dialog {
        margin: 15px auto;
        max-width: calc(100% - 30px);
        top: 15%;
    }
    
    #contact1 .modal-header h4 {
        font-size: 17px;
    }
}

/* Mobile Gallery Adjustments */
@media (max-width: 575px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery_item_title {
        font-size: 11px;
        bottom: 8px;
        left: 8px;
    }
}

