/*
 Theme Name:   Twenty Twenty-Five Child
 Template:     twentytwentyfive
 Description:  Child theme for Twenty Twenty-Five
 Author:       Your Name
 Version:      1.0
*/

/* ===============================
   Floating Language Switcher
   =============================== */
#pll-floating-switcher {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
}

#pll-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#pll-switcher-toggle:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

#pll-switcher-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    min-width: 150px;
    width: max-content;
    list-style: none;
    padding: 8px 0;
    margin: 0 0 10px 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

#pll-floating-switcher:hover #pll-switcher-dropdown,
#pll-floating-switcher:focus-within #pll-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pll-switcher-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.pll-switcher-link:hover {
    background: #f5f5f5;
}

.current-lang .pll-switcher-link {
    background: #f0f0f0;
    font-weight: 600;
}

.pll-flag {
    width: 20px;
    display: inline-block;
}

.pll-flag img {
    width: 100%;
    height: auto;
    display: block;
}


/* ===============================
   Remove Focus Outlines
   =============================== */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}


/* ===============================
   Section Spacing (Groups & Covers)
   =============================== */
/* .wp-block-group,
.wp-block-cover {
    margin-bottom: 3rem !important;
}

.wp-block-group:last-child,
.wp-block-cover:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .wp-block-group,
    .wp-block-cover {
        margin-bottom: 2rem !important;
    }
} */


/* ===============================
   Flex Columns Padding
   =============================== */
/* .wp-block-columns.is-layout-flex {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

@media (max-width: 768px) {
    .wp-block-columns.is-layout-flex {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
} */


/* ===============================
   Navigation Padding Fix
   =============================== */
.wp-block-navigation__container {
    padding: 0 20px !important;
}


.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    position: absolute !important;
    top: 1rem !important;       /* adjust vertical position */
    right: -10rem !important;    /* move further to the right; tweak as needed */
    z-index: 9999 !important;
    display: block !important;

}


@media (max-width: 1024px) {
    .wp-block-navigation__container {
        width: 90vw;       /* full viewport width */
        max-width: none;    /* remove any default max-width */
        margin: 0;          /* no centering needed */
        padding: 0 20px;    /* optional padding */
    }
}




/* Make header stay on top of everything */
.wp-block-template-part {
    position: relative !important;
    z-index: 1000 !important;
    background: white !important; /* Ensure header has solid background */
}

/* Optional: Add subtle shadow for better separation */
.wp-block-template-part {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Now you can safely use negative margin on the next section */
.hero-section {
    margin-top: -105px !important;
    position: relative;
    z-index: 1; /* Lower than header */
}


/* Remove the border around the checkbox wrapper only in this section */
.checkbox-row .wpcf7-checkbox {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}


/* Keep your existing checkbox style intact */
.wpcf7 input[type="checkbox"] {
  margin-right: 6px;
  margin-bottom: 8px;
}

.wpcf7 .wpcf7-list-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 8px;
}



.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
}


/* Make check-in & check-out side by side */
.two-cols.fullwidth {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.two-cols.fullwidth .col {
  flex: 1;
}

.two-cols.fullwidth .col label {
  display: block;
  width: 100%;
}


/* Remove background and border styling from CF7 selects */
.wpcf7-select {
  background: transparent !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  width: 100% !important;
  font-family: inherit !important;
  font-size: 16px !important;
  appearance: none !important; /* Removes system default arrow styling */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* Remove white background wrapper (span around select) */
.wpcf7-form-control-wrap {
  background: transparent !important;
  display: block !important;
}

/* Remove hover highlight on options */
.wpcf7-select option {
  background: transparent !important;
  color: #000 !important;
}

/* On hover/focus of the select field */
.wpcf7-select:hover,
.wpcf7-select:focus {
  border-color: #999 !important;
  background: transparent !important;
  outline: none !important;
}


/* Center and bold the form heading + description */
.wpcf7 form h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.wpcf7 form p:first-of-type {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 25px;
}



.process-steps {
    max-width: 600px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}


.services-list {
    max-width: 600px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bullet {
    font-size: 24px;
    margin-right: 15px;
    line-height: 1;
    color: #2c5aa0;
}

.service-content strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.service-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}