@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Permanent+Marker&family=Shadows+Into+Light+Two&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Quicksand', sans-serif;
}
.site-nav{

    background: rgba(39, 108, 121, 0.95); 

}


body {
	height: 100vh;
	width: 100%;
}

.container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px 100px;
	margin-top: 100px;
}

.container:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("../images/office1.jpeg") no-repeat center;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}

.contact-box {
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left {
	background: url("../images/office2.jpeg") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right {
	padding: 25px 40px;
}

h2 {
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	height: 4px;
	width: 50px;
	border-radius: 2px;
	background-color: #27aaaa;
}

.field {
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

textarea {
	min-height: 150px;
}

.btn {
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #041414;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.btn:hover {
	background-color: #172e2e;
}

.field:focus {
	border: 2px solid rgba(30,85,250,0.47);
	background-color: #fff;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 880px) {
	.navbar{
		background: transparent !important;
	}
	.contact-box {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.left {
		height: 200px;
		width: 100%;
	}
	.right {
		padding: 20px;
	}
	h2 {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	.field, .btn, textarea {
		font-size: 1rem;
	}
}

@media screen and (max-width: 480px) {
	.container {
		padding: 15px;
	}
	.right {
		padding: 15px;
	}
	h2 {
		font-size: 1.5rem;
	}
	.field, .btn, textarea {
		font-size: 0.95rem;
		padding: 0.5rem 0.8rem;
	}
	textarea {
		min-height: 120px;
	}
}
    /* Overlay blur background when success message appears */
    .blur-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.1);
      z-index: 10;
      display: none;
    }

    /* Success message box */
    .success-message {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.7);
      background: white;
      color: #2ecc71;
      font-weight: bold;
      padding: 30px 50px;
      border-radius: 15px;
      box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
      opacity: 0;
      transition: all 0.5s ease;
      z-index: 20;
      text-align: center;
    }

    .success-message.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }