:root{
    --header-background: white;
    --header-text: #000000;
    --sidebar-background: #353535;
    --sidebar-text: #e7e7e7;
    --table-header-background: #2c2c2c;
    --table-header-text: #f9f9f9;
    --table-border: #acacac;
    --table-background: #f9f9f9;
    --table-text: #2b2b2b;
    --table-row-alt: #e9e9e9;
    --text-highlight: var(--primary-color);
    --primary-button-background: var(--primary-color);
    --primary-button-text: #ffffff;

    --text-color: #180501;
    --primary-color: #ff6600;
    --primary-color-superlight: #ffbe93;    
    --primary-color-darker: #b64900;
    --secondary-color: #ff6600;
    --tertiary-color: #f9f9f9;
    --quaternary-color: #e9e9e9;

    
    --text-color: #180501;
    --primary-color: #481ca0;
    --primary-color-superlight: #dacbf7;    
    --primary-color-darker: #311074;
    --secondary-color: #d19a05;
    --tertiary-color: #f9f9f9;
    --quaternary-color: #e9e9e9;


    --border-color-light: #e0e0e0;
    --border-color-medium: #cccccc;
    --background-color-page: #f5f5f5;
    --background-color-panel: #ffffff;
    --background-color-panel-alt: #f9f9f9;
    --text-color: #333333;
    --text-color-light: #555555;
}

#vans-section {
    scroll-margin-top: 100px;
  }

html, body {
    margin: 0;
    min-height: 100%;
    min-width: 100%;
    padding: 0;  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;      
    scroll-behavior: smooth;
    overflow-x: visible;
    overflow-y: visible;
    height: fit-content;
}


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    line-height: 1.6;
}

.brand .highligh-bold{
    margin-right: 5px;    
    min-width: fit-content;
}

.unstyled-link{
    text-decoration: none;
    color: var(--text-color);

}

.brand-link{  
    text-decoration: none;
    color: var(--text-color);
}

.invisible{
    display: none;
    visibility: hidden;
}

.header-spacer{
    width: 100%;
    height: 60px;
    display: block;
  }

  
  /* Navigation Enhancements */
  .nav-menu a {
    position: relative;
    padding-bottom: 5px;
  }
  
  .nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::after {
    width: 100%;
  }

h3{
    margin-top: 0px ;
    margin-bottom: 0px ;
    font-size: 20px ;
}


h1{
    padding: 10px 20px 10px 20px;
    font-weight: 800;
    font-size: 45px;
    margin: 10px 0px 10px 0px;
    text-shadow: 0px 0px 40px #ffffffb0;
}

h2{
    font-weight: 800;
    font-size: 40px;
    margin: 10px 0px 10px 0px;
}

h1 img {
    max-height: 60px;
    margin-top: -10px;
}

.hero-content p{
    margin: 0px 0px 10px 0px;
    font-weight: 600;
    text-shadow: 0px 0px 30px #ffffff, 0px 0px 35px #ffffff, 0px 0px 40px #ffffff;
}

.hero-paralax-image{    
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('/assets/van-new-zealand.webp') center top / cover no-repeat;
    height: 120%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
}

button{
    transition: all 0.3s ease;
    border: none;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--primary-button-background);
    color: var(--primary-button-text);
}

button:hover{
    background-color: var(--primary-color-darker);
}

  

.whatsapp-btn, .option-btn, .prev-btn, .next-btn, .submit-btn, .restart-btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.whatsapp-btn:hover, .option-btn:hover, .prev-btn:hover, .next-btn:hover, .submit-btn:hover {
    transition: all 0.3s ease;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.highligh-bold{
    font-weight: bold;
    color: var(--text-highlight);
}

p{    
    font-size: 20px;
}

li{
    margin-bottom: 10px;
    list-style: none;
    font-size: 20px;
}

li .fa-square-check{
    color: var(--primary-color);
}

.main-container{
    position: relative;
    height: fit-content;
    min-height: 100dvh;
    background-color: white;
}



.flex-horizontal-container{
    display: flex;
    width: 100%;
    overflow: hidden;
    height: fit-content;  
    z-index: 5;
    position: relative;
    background-color: white;
}

.center{
    justify-content: center;
}

.gap-10{
    gap: 10px;
}

section{
    padding: 20px 0px 20px 0px;
}

.flex-horizontal-content {
    width: 50%;
    padding: 0px;  
    background-color: #ffffff;
    position: relative;
}

.locations.container{    
    max-height: 545px;
}

.locations-map{
    display: flex; /* Magic begins */
    justify-content: center; /* Center contents */
    align-content: center;
    overflow: hidden;
    background-color: #1067d8;
    max-height: 545px;
    border-radius: 0px 15px 15px 0px;

    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.4) inset;
}

.locations-text-content{
    padding: 20px;
    padding-left: 40px;
}

.map-image{
    flex-shrink: 0; 
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    aspect-ratio: 601/505;
    background: url('/assets/NZ_Map_HD_NoLabels.jpg') center center / cover no-repeat;
    background-size: 100%;
}

.auckland-image{
    transition: all 0.2s ease-out;
    aspect-ratio: 3/2;
    background: url('/assets/Auckland.jpg') center center / cover no-repeat;
    background-size: 125%;
}

.christchurch-image{
    transition: all 0.2s ease-out;
    aspect-ratio: 3/2;  
    background: url('/assets/Christchurch.jpg') center center / cover no-repeat;
    background-size: 100%;
}

.auckland-image:hover{
    transition: all 1.4s ease-out;
    background-size: 135%;
}

.christchurch-image:hover{
    transition: all 1.4s ease-out;
    background-size: 110%;
}

.auckland-image p,.christchurch-image p{
    width: 100%;
    text-align: left;   
    background-color: #00000081;
    color:white;
    padding: 10px;
    margin: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 20px;
    font-weight: 600;
}




.hero {
    height: fit-content;
    min-height: 100dvh;
    padding-top: 100px;
    padding-buttom: 100px;
    padding-right: 40px;
    padding-left: 40px;
    
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('/assets/van-new-zealand.webp') center top / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative; 
    z-index: 0;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0px;
}

.hero-vertical-split{
    display: flex;
    width: 100%;
    max-width: 1300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.overflow-visible{
    overflow: visible;
}


  /* Location Images Enhancements */
  .auckland-image, .christchurch-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  /* Footer Enhancements */
  .footer-links a {
    transition: all 0.3s ease;
    position: relative;
  }
  
  .footer-links a:hover {
    padding-left: 5px;
    color: var(--primary-color);
  }

  .map-shadow{
    width: 100%;
    box-shadow: 2px 2px 10px 5px rgba(4, 0, 23, 0.8) inset;
    height: 100%;position: 
    absolute;
    border-radius: 0px 15px 15px 0px;
  }

  .floating-arrow {
    margin-bottom: 20px;
    font-weight: 700;
    position: absolute;   
    bottom: 10px;         
    left: 50%;          
    transform: translateX(-50%); 
    display: flex;         
    flex-direction: column;
    align-items: center;    
    font-family: Arial, sans-serif; 
    font-size: 18px;           
    cursor: pointer;        
    color: white;
    animation: moveArrow 2s infinite ease-in-out; 
    background: var(--primary-color);
    border-radius: 15px;
    padding: 5px 20px 10px 20px;  
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
  }
  .hidden-arrow{
    opacity: 0;
    margin-bottom: 50px;
    transition: all 0.5s ease;
  }

  .arrow {
    margin-left: 8px;      
    color: white;
    border-width: 0 3px 3px 0; 
    display: inline-block; 
    padding: 5px;          
  }

  @keyframes moveArrow {
    0%, 100% {
      transform: translateY(0) translateX(-50%); /* Starting and ending position of the arrow */
    }
    50% {
      transform: translateY(5px) translateX(-50%); /* Mid-point position, creates a subtle rightward movement */
    }
}

  

@media (max-width: 768px) {
    .flex-horizontal-container {
        flex-direction: column;
    }
    
    .flex-horizontal-content {
        width: 100%;
    }

    .locations-text-content{
        padding-left: 20px;
    }

    h1{
        padding: 0px 0px 10px 0px;
        font-size: 40px;
        margin: 0px 0px 0px 0px;
    }
    p{
        font-size: 20px;
    }

    .map-shadow, .locations-map{
        border-radius: 0px 0px 0px 0px;
        box-shadow: 2px 2px 10px 2px rgba(4, 0, 23, 0.8) inset;
    }

    .locations-map{        
        max-height: 425px;
    }
}






.hero-booking-section {
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0px 0px 15px 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #f9f9f9;
}

.hero-booking-section h3{
    margin: -20px 0px 5px 0px;
    font-size: 24px;
    background-color: white;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 15px 15px 0px 0px;
    margin-bottom: 0px; 
    border: 1px solid #e0e0e0;;
    z-index: 2;
    position: relative;
    font-weight: bold;
}

.booking-form-content{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.location-divider{  
    align-content: center;
}

.location-divider i{  
    font-size: 24px;
}

.location-divider .fa-arrow-down{
    visibility: hidden;
    display: none;
}

.booking-form-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 16px;
}

.form-group select,
.form-group input,
.form-group input[type="date"] {
    padding: 5px 5px;
    /*border: 2px solid #e0e0e0;*/
    border: 1px solid #959595;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.form-group select:focus,
.form-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.booking-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.booking-submit-btn:hover {
    background-color: var(--primary-color-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}


@media (max-width: 768px) {
    .booking-form {
        padding: 20px;
    }
    
    .booking-form-row {
        flex-direction: column;
        gap: 15px;
    }
    .booking-form-content{        
        flex-direction: column;
        gap: 15px;
    }
    .location-divider .fa-arrow-down{
        visibility: visible;
        display: block;
    }
    .location-divider .fa-arrow-right{
        visibility: hidden;
        display: none;
    }
    
    .form-group select,
    .form-group input[type="date"] {
        padding: 5px;
        font-size: 16px;
    }
    
    .booking-submit-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}







