.zak-content {padding: 16px 16px 0 16px;}
#zak-masthead {display: none;}

b, strong {
    font-weight: 600 !important;
}

.zak-header-button .zak-button {font-size: 20px; border: none!important; font-style: italic;}

.everest-forms input[type='text'], .everest-forms input[type='email'], .everest-forms select {
    margin-bottom: 5px;
		background: rgba(255,255,255,0.7);
		border: none;
	  font-family: "DM Sans", Sans-serif;
	  font-size: 14px;
		font-weight: 600;
		border-radius: 6px;
		padding: 12px;
}

.everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid .evf-field.everest-forms-invalid > label {
    color: #b10000;
}

.everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid .evf-field.everest-forms-invalid input.evf-error {
    border-color: #b10000;
}

.everest-forms label {
	font-size: 16px;
	margin: 0;
	font-weight: 400!important;
}

.everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid .evf-field {
    margin-bottom: 5px;
}

.everest-forms input[type='submit'], .everest-forms button[type='submit'], .everest-forms a.button:not(.button-large), .everest-forms button.button:not(.button-large), .everest-forms .everest-forms-part-button {
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #00ab82;
    background-color: #00ab82;
    font-weight: 600;
	  color: #FFF;
    font-family: "DM Sans", Sans-serif;
	  margin-top: 12px;
}

.everest-forms input[type='submit']:hover, .everest-forms input[type='submit']:active, .everest-forms button[type='submit']:hover, .everest-forms button[type='submit']:active, .everest-forms a.button:not(.button-large):hover, .everest-forms a.button:not(.button-large):active, .everest-forms button.button:not(.button-large):hover, .everest-forms button.button:not(.button-large):active, .everest-forms .everest-forms-part-button:hover, .everest-forms .everest-forms-part-button:active {
    outline: none;
    color: #23282d;
		border: 1px solid #038364;
    background-color: #038364;
	  color: #FFF;
}

.everest-forms .evf-container {
    margin-bottom: 22px;
}

@media (max-width: 767px) {
	.zak-main-header .zak-container {padding: 0 25px;}
	.everest-forms .evf-submit-container {
    padding-left: 0;
    padding-right: 0;
}
	.everest-forms input[type='text'], .everest-forms input[type='email'], .everest-forms select {
			margin-bottom: 10px;
}
	
	.everest-forms input[type='submit'], .everest-forms button[type='submit'], .everest-forms a.button:not(.button-large), .everest-forms button.button:not(.button-large), .everest-forms .everest-forms-part-button {
    padding: 10px 14px;}

}

.testimonial-slider-container {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 60px 20px 0 20px;
    font-family: "DM Sans", sans-serif;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-text {
    position: relative;
    font-size: 20px;
    line-height: 1.6;
    color: #202124;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eaed;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #4285f4;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 10px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 17px;
    color: #5f6368;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.testimonial-nav:hover {
    background: #f8f9fa;
    border-color: #1a73e8;
    color: #1a73e8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-nav.prev {
    left: calc(50% - 20px);
}

.testimonial-nav.next {
    left: calc(50% + 20px);
}

.testimonial-nav:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 80px;
    line-height: 1;
    color: #e8eaed;
    opacity: 0.6;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-slider-container {
        padding: 20px 10px;
    }

    .testimonial-item {
        padding: 45px 20px 20px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-nav {
        width: 25px;
        height: 25px;
        font-size: 15px;
        top: 10px;
    }

    .testimonial-nav.prev {
        left: calc(50% - 18px);
    }

    .testimonial-nav.next {
        left: calc(50% + 18px);
    }
}

@media (max-width: 480px) {
    .testimonial-nav.prev {
        left: calc(50% - 18px);
    }

    .testimonial-nav.next {
        left: calc(50% + 18px);
    }

    .testimonial-text {
        font-size: 14px;
    }
}

#exitModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  font-family: 'Helvetica Neue', sans-serif;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 480px;
  margin: 5% auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-image-wrapper {
  position: relative;
  width: 100%;
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

#closeModal {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  transition: background 0.2s;
  padding-left: 2px;
}
#closeModal:hover {
  background: rgba(0,0,0,0.7);
}

.modal-body {
  padding: 20px 20px 0px;
  text-align: center;
}

.modal-body h3 {
  margin-top: 0;
  color: #004aad;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 12px;
}

.modal-body p {
  color: #333;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}
	
.modal-form .everest-forms input[type='text'], .modal-form .everest-forms input[type='email'], .modal-form .everest-forms select {border: 1px solid #CCC;}
.modal-form .everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid {padding: 0;}
.modal-form .everest-forms .evf-field-container .evf-frontend-row:not(.wp-list-table) {
	display: flex;
    flex-wrap: nowrap;
    margin-left: -15px;
    margin-right: -15px;
    flex-direction: row;
    justify-content: center;
    column-gap: 20px;
}
	
@media screen and (min-width: 768px) {
    .modal-form .everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid.evf-grid-2 {
        max-width: 46%;
    }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}