@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  background: #f5f7fb;
  color: #333;
}

/* HEADER */
.header {
	background: #001d35;
	padding: 15px 0;
	position: relative;
}
.header .container {
	padding-top: 0px;
	padding-bottom: 0px;
}

    .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      color: #fff;
      font-size: 22px;
    }

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
    }
	nav a:hover {
	color: #1666ab;
}
	
/* Perfect Hamburger → X */
.menu-toggle {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.35s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  top: 18px;
}

/* X State */
.menu-toggle.open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}


/* HERO */
.hero {
	min-height: 90vh;
	background: linear-gradient(135deg, rgba(0,0,0,.3), rgb(0, 0, 0, 0.3)), url("https://images.unsplash.com/photo-1503376780353-7e6692767b70") center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}

.hero-box {
  text-align: center;
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 50px;
  border-radius: 18px;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn-outline {
	border: 2px solid #fff;
	color: #fff;
	padding: 8px 30px;
	border-radius: 30px;
	text-decoration: none;
	display: inline-block;
	margin-top: 30px;
	font-size: 16px;
	transition: background-color 0.8s ease, color 0.8s ease;
}
.btn-outline:hover {
	background: #fff;
	color: #082a47;
}
.btn-primary {
	background: #fff;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	color: #1b5587;
	border-radius: 30px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.8s ease, color 0.8s ease;
}
.btn-primary:hover {
  background: #082a47;
  color: #fff;
}


/* SECTIONS */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.section-title.light {
	color: #fff;
}
.inquiry .section-title {
	color: #000;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 35px 12px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
	font-size: 30px;
	color: #fff;
	margin-bottom: 15px;
	background: #0f4c81;
	width: 70px;
	padding: 20px 10px;
	border-radius: 50%;
}

.service-card h3 {
  margin-bottom: 10px;
}

/* WHY */
.why {
  background: linear-gradient(135deg, #0f4c81, #245fa5);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-box {
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.why-box i {
	font-size: 30px;
	color: #0f4c81;
	margin-bottom: 15px;
	background: #fff;
	width: 70px;
	padding: 20px 10px;
	border-radius: 50%;
}
.why-box h3 {
	margin-bottom: 10px;
}

/* INQUIRY FORM */

.inquiry {
  background: #fff;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group i {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #555;
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  height: 100px;
  resize: none;
}
.error.text-danger {
	color: red;
}
#formSuccess {
	color: #007e00;
}
.contact-wrapper {
  display: flex;
  gap: 30px;
}
.contact-info {
  flex: 1;
  background: #ccc;
  color: #000;
  padding: 30px;
  border-radius: 12px;
}

.contact-info h2 {
  margin-bottom: 25px;
  font-size: 24px;
}

.info-item i {
  margin-right: 10px;
}
.info-item a {
	display: block;
	margin-bottom: 20px;
	color: #000;
	text-decoration: none;
}
.info-item p {
  margin-bottom: 20px;
  color: #000;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  padding: 30px;
  background: #ccc;
  border-radius: 12px;
}

/* CTA */
.cta {
  background: #0f4c81;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.cta h2 {
	font-size: 30px;
}
.cta p {
	margin-top: 10px;
}

.site-footer {
  background: #082a47;
  color: #cbd5e1;
  padding: 50px 0px 0;
}

.footer-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.footer-box:nth-child(2) {
	margin-left: 40px;
}

.footer-box h3,
.footer-box h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-box p {
	line-height: 1.8;
	font-size: 14px;
	color: #cbd5e1;
}
.footer-box-list a {
	display: block;
	line-height: 1.8;
	color: #cbd5e1;
	text-decoration: none;
}
.footer-box-list i {
  margin-right: 10px;
  color: #fff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
	margin-bottom: 10px;
	font-size: 14px;
}

.footer-box ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #1666ab;
  padding-left: 5px;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
  background: #1e293b;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-bottom {
  margin-top: 40px;
  background: #001d35;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #94a3b8;
}




/* Responsive */
@media (min-width: 768px) {
	
.menu-toggle {
	display: none;
}

}


@media (max-width: 768px) {

.menu-toggle {
	display: flex;
}
nav {
	position: absolute;
	top: 65px;
	left: 0;
	width: 100%;
	background: #0f4c81;
	flex-direction: column;
	align-items: center;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	z-index: 99;
}
nav a {
	padding: 5px 0;
}

nav.active {
	max-height: 350px;
	padding: 20px 0;
}

.contact-wrapper {
    flex-direction: column;
} 
 .container {
	padding: 40px 10px;
}
.contact-info {
	padding: 30px 20px;
}
.contact-form {
	padding: 30px 20px;
}
.why-box {
	padding: 10px;
}
.info-item p {
	letter-spacing: -0.8px;
}
.hero-box {
	padding: 40px 10px;
}
.hero {
	min-height: 60vh;
}
.hero h2 {
	font-size: 30px;
}
h2 {
	font-size: 24px !important;
}
.contact-info h2 {
	font-size: 18px !important;
}
.footer-box:nth-child(2) {
	margin-left: 0px;
}
.site-footer .footer-container {
	padding: 0 20px;
}


}
