@font-face {
	font-family: "Whitney Book";
	src:
		url("../fonts/Whitney-Book.woff2") format("woff2"),
		url("../fonts/Whitney-Book.woff") format("woff"),
		url("../fonts/Whitney-Book.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
    letter-spacing: 0.025em;
    font-size: 19px;
}

body {
	margin: 0;
	background-color: #132952;
	font-family: "Whitney Book", "Lato", system-ui, sans-serif;
}

.wrapper {
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
}

h1 {
	font-family: 'Bodoni Moda', sans-serif, system-ui;
	font-size: 40px;
	font-weight: 600;
	color: #fff;
    letter-spacing: 0.15em;
}

.hero {
	min-height: 100vh;
	background: url("../img/sec1-bg.jpg") center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hero .logo {
    margin-bottom: 45px;
}

.enquiry {
    padding-top: 75px;
    padding-bottom: 80px;
}

.enquiry .enquiry-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 135px;
}

.footer {
    padding-top: 80px;
    padding-bottom: 80px;
}

.enquiry-top-fields {
    display: flex;
    gap: 77px;
    margin-bottom: 50px;
}

.enquiry-top-fields .left {
    display: flex;
    gap: 35px;
    flex-grow: 1;
}

.enquiry-top-fields .left div {
    flex-grow: 1;
}

.select-field {
    position: relative;
    max-width: 125px;
}

.select-field select, .input-field input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0;
    background: none;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 10px 0 15px;
    font-size: 19px;
}

.select-field select:focus, .input-field input:focus {
    outline: 0;
}

.input-field input::placeholder, .select-field select {
    color: #fff;
    font-size: 19px;
    letter-spacing: 0.025em;
}

.enquiry-top-fields .right{
    max-width: 100%;
    min-width: 415px;
}

.enquiry-mid-fields {
    margin-bottom: 70px;
}

.enquiry .dropdown {
    position: relative;
}

.enquiry .dropdown-value {
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 10px 0 15px;
    position: relative;
    font-size: 19px;
    letter-spacing: 0.025em;
    cursor: pointer;
}

.enquiry .dropdown-value::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 2px;
    background: url(../img/caret-down.png) top left no-repeat;
    display: block;
    width: 20px;
    height: 12px;
    background-size: 100%;
    transition: transform 0.25s ease;
    transform-origin: center;
}

.enquiry .dropdown-options {
    padding: 5px 0;
    position: absolute;
    top: 13px;
    left: 0;
    min-width: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #081a2d;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.5s ease;
    z-index: 2;
}

.enquiry .dropdown-options div {
    cursor: pointer;
    padding-bottom: 2px;
    transition: opacity .25s ease-in;
}

.enquiry .dropdown-options div:hover {
    opacity: 0.7;
}

.enquiry .dropdown.active .dropdown-options {
    max-height: 280px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.enquiry .dropdown.active .dropdown-value::after {
    transform: rotate(180deg);
}

.enquiry .dropdown-options div.selected {
    font-weight: bold;
}

.terms-field {
    margin-bottom: 65px;
    display: flex;
}

.terms-field label {
    font-size: 19px;
    color: #fff;
    letter-spacing: 0.025em;
    user-select: none; 
}

.terms-field .terms-checkbox {
    position: relative;
}

.terms-field input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    margin-right: 14px;
}

.terms-field .checked {
    position: absolute;
    top: 6px;
    left: 5px;
    width: 12px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform:rotate(-45deg);
    opacity: 0;
    transition: opacity .25s ease-in;
}

.terms-field input:checked ~ .checked {
    opacity: 1;

}

.btn-submit {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: 0;
    border: 1px solid #fff;
    outline: 0;
	font-family: 'Bodoni Moda', sans-serif, system-ui;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
    letter-spacing: 0.15em;
}