/*
Theme Name: Exopeel Customs
Theme URI: www.devable.eu
Template: hello-elementor
Author: Anton Giurgiu
Author URI: www.devable.eu
Description: An easy to use theme built for Exopeel Customs.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.1757705925
Updated: 2025-09-12 19:38:45

*/

/* Main Styling Header */

.bes-header .dropdown-menu {
	min-width: 12rem;
background-color: #081425;
  border: 1px solid #FEC558;
}

.btn-cta {
	border: transparent;
}

.dropdown-menu > li {
	padding-left: 10px;
}

.navbar > .container {
	padding: 0 20px;
}
.navbar {
--bs-navbar-nav-link-padding-x: 1rem;
}
@media screen and (max-width: 1000px) {
	.navbar > .container {
		padding: 10px;
	}
	.bes-swiper .swiper-slide img {
	max-height: 30vh !important;
}
	
.elementor-620 .elementor-element.elementor-element-e6c674e .chips-row{
		top: -15vh !important;
	}
	 .swiper-button-prev,  .swiper-button-next {
		visibility: hidden !important;
	}
}

.navbar-toggler {
	background-color: #F37860;
}
/* End of Mobile */

/* Slider */

.bes-swiper .swiper-slide img {
	max-height: 50vh !important;
}

.theme-swiper-title {
	font-family: "Unbounded", sans-serif !important;
	color: #F37860 !important;
	font-weight: 300;
	font-size: 25px;
}

.theme-custom-flex{
	flex-direction: column-reverse;
}

.bes-swiper .swiper-button-prev, .bes-swiper .swiper-button-next {
	background: transparent;
}

.color-chip[aria-current="true"], 
.color-chip.active {
    box-shadow: none !important;
}

div.swiper-slide-active:nth-child > div:nth-child {
	display: none;
}

/* Modal */
.modal-header{
	border-bottom: none;
}
/* Remove stroke from modal trigger button */
.bes-trigger .btn {
    border: none !important;
}

/* CTA Programare */
/* Import FontAwesome (add to your HTML head) */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> */

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  
  /* Gradient matching your image */
  background: linear-gradient(135deg, #00ff88 0%, #00e676 25%, #1de9b6 75%, #26c6da 100%);
  
  /* Button styling */
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  
  /* Dimensions and spacing */
  padding: 16px 32px;
  border-radius: 50px;
  min-width: 280px;
  height: 60px;
  
  /* Effects */
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Hover effects */
.call-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
  background: linear-gradient(135deg, #1de9b6 0%, #00ff88 25%, #26c6da 75%, #00e676 100%);
}

/* Active state */
.call-button:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.35);
}

/* Phone icon styling */
.call-button .fas.fa-phone {
  font-size: 16px;
  animation: pulse 2s infinite;
}

/* Pulse animation for phone icon */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Ripple effect on click */
.call-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.call-button:active::before {
  width: 300px;
  height: 300px;
}

/* Responsive design */
@media (max-width: 768px) {
  .call-button {
    min-width: 260px;
    font-size: 15px;
    padding: 14px 28px;
    height: 56px;
  }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Card */
.contact-card {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Profile Image */
.profile-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Buttons Container */
.contact-buttons {
    display: flex;
    gap: 30px;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Button Base */
.contact-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #00ff7f 0%, #00e676 100%);
}

.phone-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 255, 127, 0.4);
}

/* Email Button */
.email-btn {
    background: linear-gradient(135deg, #FEC558 0%, #E59700 100%);
}

.email-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 149, 0, 0.4);
}

/* Hover States */
.contact-card:hover .contact-overlay,
.contact-card:focus-within .contact-overlay {
    opacity: 1;
    visibility: visible;
}

.contact-card:hover .contact-buttons,
.contact-card:focus-within .contact-buttons {
    transform: translateY(0);
}

.contact-card:hover .profile-image img {
    transform: scale(1.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Touch/Tap Support for Mobile */
@media (hover: none) and (pointer: coarse) {
    .contact-card:active .contact-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .contact-card:active .contact-buttons {
        transform: translateY(0);
    }
    
    .contact-card:active .profile-image img {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        width: 280px;
        height: 280px;
        border-radius: 12px;
    }
    
    .contact-buttons {
        gap: 25px;
    }
    
    .contact-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }
    
    .contact-card {
        width: 250px;
        height: 250px;
        border-radius: 10px;
    }
    
    .contact-buttons {
        gap: 20px;
    }
    
    .contact-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

/* Animation for Button Icons */
.contact-btn i {
    transition: transform 0.2s ease;
}

.contact-btn:hover i {
    transform: scale(1.2);
}

/* Focus States for Accessibility */
.contact-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

/* Loading State Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.contact-card.loading {
    animation: pulse 1.5s infinite;
}


.floating-phone-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#google-ads-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 30px;
}

#google-ads-phone-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

#google-ads-phone-btn:active {
    transform: translateY(0px) scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-phone-button {
        bottom: 15px;
        right: 15px;
    }
}

.btn-close {
	opacity: 1;
	font-size: 20px;
}

.post-password-form {
	margin: 50px auto;
    max-width: 500px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
