/* Holger Customization Styles */

/* Overlay */
.holger-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.holger-popup-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

/* Popup Container */
.holger-popup-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: holgerSlideUp 0.3s ease;
}

@keyframes holgerSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.holger-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #0b3a5e;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.holger-close-btn:hover {
    background-color: #f0f0f0;
    color: #0b3a5e;
}

/* Steps */
.holger-step {
    display: none;
    padding: 40px 30px;
    max-height: 90vh;
    overflow-y: auto;
}

.holger-step.active {
    display: block;
    animation: holgerFadeIn 0.3s ease;
}

/* Step 2 specific - no scrollbar, only Calendly scrolls */
#holger-step-2.active {
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}

@keyframes holgerFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Step Indicator */
.holger-step-indicator {
    text-align: center;
    color: #0b3a5e;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Title */
.holger-popup-title {
    text-align: center;
    color: #0b3a5e;
    font-size: 28px;
    margin: 0 0 30px 0;
    font-weight: 600;
}

/* Content */
.holger-content {
    margin-bottom: 30px;
}

.holger-content p {
    color: #0b3a5e;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Checkbox */
.holger-checkbox-wrapper {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.holger-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.holger-checkbox {
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.holger-checkbox-text {
    flex: 1;
    color: #0b3a5e;
    font-size: 15px;
    line-height: 1.5;
}

/* Error Message */
.holger-error-message {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffeef0;
    border-radius: 4px;
    border: 1px solid #ffdddd;
}

.holger-error-message.show {
    display: block;
    animation: holgerShake 0.3s ease;
}

@keyframes holgerShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Buttons */
.holger-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

#holger-step-2 .holger-button-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    flex-shrink: 0;
}

.holger-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.holger-btn-primary {
    background-color: #b0ca0a;
    color: white;
}

.holger-btn-primary:hover {
    background-color: #9ab308;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 202, 10, 0.3);
}

.holger-btn-secondary {
    background-color: #b0ca0a;
    color: white;
}

.holger-btn-secondary:hover {
    background-color: #9ab308;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 202, 10, 0.3);
}

/* Success Step */
.holger-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    animation: holgerSuccessPulse 0.5s ease;
}

@keyframes holgerSuccessPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Calendly Widget Adjustments */
#holger-step-2 .holger-content {
    flex: 1;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

#holger-step-2 .calendly-inline-widget {
    border-radius: 8px;
    overflow: auto;
    margin: 0;
    flex: 1;
    min-height: 650px;
    height: 650px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .holger-popup-container {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .holger-step {
        padding: 30px 20px;
    }
    
    .holger-popup-title {
        font-size: 24px;
    }
    
    .holger-content p {
        font-size: 15px;
    }
    
    .holger-btn {
        padding: 10px 24px;
        font-size: 15px;
    }
    
    .holger-checkbox-wrapper {
        padding: 15px;
    }
    
    #holger-step-2 .calendly-inline-widget {
        min-width: 280px !important;
        min-height: 450px !important;
    }
}

@media (max-width: 480px) {
    .holger-popup-container {
        border-radius: 8px;
    }
    
    .holger-popup-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .holger-button-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .holger-btn {
        width: 100%;
    }
}

/* Loading State */
.holger-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #b0ca0a;
    border-radius: 50%;
    animation: holgerSpin 1s linear infinite;
    margin-left: 10px;
}

@keyframes holgerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Prevent body scroll when popup is open */
body.holger-popup-open {
    overflow: hidden;
}

.calendly-inline-widget iframe {
    min-height: 450px !important;
}

/* Video Popup Styles */
.hero-conteiner-img {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-conteiner-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.hero-conteiner-img:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.holger-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hero-conteiner-img:hover .holger-video-play-button {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.15);
}

/* Video Popup Overlay */
.holger-video-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.holger-video-popup-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.holger-video-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: 1200px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    animation: holgerVideoSlideUp 0.3s ease;
}

@keyframes holgerVideoSlideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.holger-video-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.holger-video-close-btn:hover {
    color: #b0ca0a;
    transform: scale(1.1);
}

.holger-video-player {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

/* Solution Video Popup Button Styles */
.solution-video-popup {
    display: inline-block !important;
    cursor: pointer;
}

.solution-video-popup a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none;
}

.solution-video-popup .elementor-button-content-wrapper {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.solution-video-popup .elementor-button-text {
    display: none !important;
}

.solution-video-popup-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    display: block;
}

.solution-video-popup:hover .solution-video-popup-icon {
    opacity: 0.8;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .holger-video-play-button {
        width: 90px;
        height: 90px;
    }

    .holger-video-popup-container {
        max-width: 95%;
    }

    .holger-video-close-btn {
        top: 10px;
        right: 10px;
        font-size: 32px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 35px;
        height: 35px;
    }

    .solution-video-popup-icon {
        width: 50px;
        height: 50px;
    }
}


/* Copy CSS from Theme(backup) */

/*
#moderncart-floating-cart {
	display: none;
}

.site-content body,
.site-content h1, .site-content h2, .site-content h3, .site-content h4, .site-content h5, .site-content h6,
.site-content p, .site-content div, .site-content span, .site-content li, .site-content a,
.site-content input, .site-content button, .site-content select, .site-content textarea,
.site-content td, .site-content th {
    font-family: 'Schibsted Grotesk', sans-serif !important;
}

.site-content h1 p{
    color: white !important;
}

.site-content h2 {
    color: #0b3a5e !important;
}

.site-content,
.site-content p,
.site-content div,
.site-content span,
.site-content li,
.site-content td,
.site-content article,
.site-content section {
    color: #0b3a5e !important;
}

.site-content h3, .site-content h3 span {
    color: #0091ad !important;
}

 .site-content .elementor-widget-button a{
    background-color: #b0ca0a !important;
    border: none !important;
}


 .site-content .elementor-widget-button a span{
    color: white !important;
}

.site-content .elementor-element-5450827 span, .site-content .elementor-element-5450827 div,.site-content .elementor-element-136db10 *{
	color: white !important;
}

.ast-footer-social-wrap {
	display: none;
}
.site-footer {
	background-color: #007196;
}

.site-footer p, 
.site-footer a {
	color: white !important;
}

.site-content .solution-video-popup a {
	background-color: transparent !important;
}



.elementor-element.elementor-element-2e13530 > div:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.main-navigation a{
	font-size: 1.25rem;
}

.site-footer h2 {
	font-weight: bold;
} 

*/



