@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap);
body {
	margin: 0;
	font-family: 'Poppins', sans-serif
}
*::selection {
	color: #fff;
	background: #027569
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block
}
audio,
canvas,
progress,
video {
	display: block;
	vertical-align: baseline
}
audio:not([controls]) {
	height: 0;
	display: none
}
[hidden],
template {
	display: none
}
a {
	color: #000;
	text-decoration: none;
	background: transparent
}
a:active,
a:hover {
	outline: 0
}
abbr[title] {
	border-bottom: 1px dotted
}
b,
strong {
	font-weight: 700
}
dfn {
	font-style: italic
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0
}
mark {
	color: #000;
	background: #ff0
}
small {
	font-size: 80%
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}
sup {
	top: -.5em
}
sub {
	bottom: -.25em
}
img {
	border: 0
}
svg:not(:root) {
	overflow: hidden
}
figure {
	margin: 1em 40px
}
hr {
	height: 0;
	box-sizing: content-box
}
pre {
	overflow: auto
}
code,
kbd,
pre,
samp {
	font-size: 1em;
	font-family: monospace, monospace
}
button,
input,
optgroup,
select,
textarea {
	margin: 0;
	padding: 0;
	font: inherit;
	color: inherit
}
button {
	overflow: visible
}
button,
select {
	text-transform: none
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button
}
button[disabled],
html input[disabled] {
	cursor: default
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0
}
input {
	line-height: normal
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0;
	box-sizing: border-box
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto
}
input[type="search"] {
	box-sizing: content-box;
	-webkit-appearance: textfield
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}
fieldset {
	margin: 0 2px;
	padding: .35em .625em .75em;
	border: 1px solid silver
}
legend {
	border: 0;
	padding: 0
}
textarea {
	overflow: auto
}
optgroup {
	font-weight: 700
}
table {
	border-spacing: 0;
	border-collapse: collapse
}
td,
th {
	padding: 0
}
ul {
	margin: 0;
	padding: 0
}
li {
	list-style: none
}
p {
	margin: 0;
	padding: 0
}

/* ==================== */
/* MOBILE-FIRST OPTIMIZATIONS */
/* ==================== */

/* Base mobile styles */
html {
  font-size: 14px; /* Base font size for mobile */
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
  -ms-text-size-adjust: 100%;
}

/* Enhanced viewport handling for mobile */
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}

/* Touch-friendly elements */
button, 
input, 
select, 
textarea, 
a {
  touch-action: manipulation; /* Remove touch delay on mobile */
}

/* Minimum touch target size (44x44px recommended by WCAG) */
a, 
button, 
input[type="button"], 
input[type="submit"], 
input[type="reset"] {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Optimize typography for mobile readability */
body {
  line-height: 1.6; /* Better readability on small screens */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive images */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ------------------------------------------------------------------ */
/* Top Info & Header - keep layout stable while async CSS loads        */
/* ------------------------------------------------------------------ */
.top-info {
	width: 100%;
	height: 50px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-bottom: 1px solid #ddd;
}

.top-info-in {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.top-info-text span {
	color: #292e3a;
	font-size: .9em;
	font-weight: 400;
	letter-spacing: -.2px;
}

.top-info-nav ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	padding: 0;
}

.top-info-nav ul li {
	padding: 0 19px;
}

.top-info-nav ul li:nth-child(n+2) {
	border-left: 1px solid #ddd;
}

.top-info-nav ul li a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #292e3a;
	font-size: .9em;
	font-weight: 400;
}

.top-info-nav ul li a svg {
	margin: 0;
	width: 16px;
	height: 16px;
	fill: #027569;
}

.top-info-nav ul li a span {
	padding-left: 10px;
}

.top-info-nav .language {
	position: relative;
}

.top-info-nav .language ul li {
	padding: 0;
	border: none !important;
	cursor: pointer;
}

.top-info-nav .language>ul>li>a {
	padding: 5px 17px;
	color: #292e3a;
	font-size: 1em;
	font-weight: 700;
	border-radius: 6px;
	background: #f3f3f3;
	text-transform: uppercase;
	cursor: pointer;
}

.top-info-nav .language ul li a svg {
	position: relative;
	margin: 0 10px 0 0;
	width: 20px;
	height: 20px;
	color: #027569;
	fill: none;
}

.top-info-nav .language-drop {
	position: absolute;
	top: calc(100% + 20px);
	top: 28px;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	background: #efefef;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	transform: translate(-50%, 0);
	box-shadow: 0 3px 30px 0 rgba(67, 65, 79, .1);
	z-index: 9999;
}

.top-info-nav .language-drop::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
}

.top-info-nav .language-drop ul {
	display: block;
	margin: 0;
	padding: 10px 0;
}

.top-info-nav .language-drop ul li {
	padding: 0;
	border: none;
}

.top-info-nav .language-drop ul li a {
	display: block;
	padding: 5px 12px;
	font-size: .85em;
	font-weight: 700;
	text-align: right;
	color: #0a181c;
	white-space: nowrap;
	transition: all .2s ease-in-out;
}

.top-info-nav .language-drop ul li a:hover {
	background: #f3f3f3;
}

.top-info-nav .language ul li:hover>.language-drop {
	opacity: 1;
	visibility: visible;
}

.header {
	position: sticky;
	top: 0;
	width: 100%;
	padding: 20px 0;
	background: #fff;
	z-index: 999;
	-webkit-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-moz-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-ms-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-o-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
}

.header-in {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 100%;
	min-height: 70px;
}

.logo,
.logo a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	flex-shrink: 0;
}

.logo a {
	min-height: 70px;
}


.logo img {
	width: 292px;
	height: 70px;
	display: block;
	object-fit: contain;
	aspect-ratio: 292 / 70;
}

.main-nav>ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	padding: 0;
}

.main-nav>ul>li {
	position: relative;
}

.main-nav>ul>li>a,
.main-nav>ul>li a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 16px;
	color: #292e3a;
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li a:hover {
	color: #027569;
}

.main-nav>ul>li ul {
	position: absolute;
	top: 100%;
	left: -3px;
	z-index: 80;
	display: none;
	margin: 0;
	padding: 10px 0;
	background: #fff;
	border-radius: 0 0 4px 4px;
	-webkit-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-moz-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-ms-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-o-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
}

.main-nav>ul>li ul li {
	position: relative;
}

.main-nav>ul>li ul li a {
	white-space: nowrap;
	padding: 8px 15px !important;
	text-align: left !important;
}

header .main-nav>ul>li ul li a,
nav.main-nav>ul>li ul li a,
.main-nav ul li ul li a,
header .main-nav ul li ul li a {
	text-align: left !important;
	justify-content: flex-start !important;
	display: flex !important;
	align-items: center !important;
}

.main-nav>ul>li ul li ul {
	position: absolute;
	top: 0;
	left: 100%;
	display: none !important;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 0 4px 4px 4px;
	-webkit-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-moz-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-ms-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	-o-box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
	box-shadow: 0 3px 6px rgba(41, 46, 58, .1);
}

.main-nav>ul>li ul li:hover ul {
	display: block !important;
}

.main-nav>ul>li:last-child a {
	padding: 10px 0 10px 10px;
}

.main-nav>ul>li:hover ul {
	display: block;
}

.main-nav>ul>li:hover>a,
.main-nav>ul>li:hover a {
	color: #027569;
}

.mobile-nav-icon {
	display: none;
	width: 46px;
	height: 46px;
	cursor: pointer;
	border-radius: 10px;
	border: 1px solid rgba(2, 117, 105, 0.25);
	background: #ffffff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mobile-nav-icon svg {
	width: 26px;
	height: 26px;
	color: #027569;
}

.mobile-nav-icon:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(2, 117, 105, 0.2);
}

/* Prevent horizontal scrolling */
body {
	overflow-x: hidden;
	position: relative;
}

/* Mobile-optimized container */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 16px; /* Comfortable padding for mobile */
  margin: 0 auto;
}

/* ==================== */
/* RESPONSIVE BREAKPOINTS */
/* ==================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1230px) {
	.top-info-text span {
		display: none;
	}
	.top-info-nav ul li {
		padding: 0 12px;
	}
}

@media (max-width: 1180px) {
	.main-nav>ul>li>a,
	.main-nav>ul>li a {
		font-size: .98em;
		padding: 10px 6px;
	}
}

@media (max-width: 1040px) {
	.main-nav ul {
		display: none !important;
	}
	.main-nav .language {
		display: none !important;
	}
	.mobile-nav-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 12px;
	}
}

@media (max-width: 740px) {
	.top-info-text {
		display: none;
	}
	.top-info-in {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

@media (max-width: 540px) {
	.top-info-in {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.top-info-nav ul {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.top-info-nav>ul>li:nth-child(2),
	.top-info-nav>ul>li:nth-child(3),
	.top-info-nav>ul>li:nth-child(4) {
		display: none;
	}
	.top-info-nav>ul>li a {
		font-size: 1em;
		font-weight: 700;
	}
	.top-info-nav>ul>li:last-child {
		padding: 0 7px;
	}
	.top-info-nav>ul>li:last-child a {
		font-size: .9em !important;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 24px;
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
  
  .container {
    max-width: 960px;
    padding: 0 32px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 40px;
  }
}

/* ==================== */
/* MOBILE-SPECIFIC OPTIMIZATIONS */
/* ==================== */

/* Prevent zoom on input focus in iOS */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"], 
  input[type="tel"],
  input[type="password"],
  textarea {
    font-size: 16px !important; /* Prevents iOS zoom */
  }
}

/* Optimize form elements for mobile */
input, 
select, 
textarea {
  border-radius: 8px; /* Rounded corners for touch devices */
  padding: 12px 16px;
  border: 1px solid #ddd;
}

/* Mobile navigation adjustments */
@media (max-width: 991px) {
  .main-nav {
    position: relative;
    height: auto;
    transform: none;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High DPI device optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* High-resolution background images can be added here */
}

/* ==================== */
/* EXISTING STYLES BELOW */
/* ==================== */

/* Hide hero slider on small screens to prevent awkward cropping */
@media (max-width: 767px) {
	.slide {
		display: none;
	}
}

/* Remove product overlays on mobile so imagery stays visible */
@media (max-width: 740px) {
	.product-overlay {
		opacity: 0 !important;
		visibility: hidden !important;
		display: none !important;
	}
}

/* Mobile Footer Menu - Fixed CTA Menu */
.mobile-footer-menu {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1200;
	display: none;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(2, 117, 105, 0.15);
	box-shadow: 0 -8px 32px rgba(17, 24, 39, 0.12);
	padding: 12px 0;
	-webkit-backdrop-filter: blur(12px);
}

.mobile-footer-menu__list {
	display: flex;
	align-items: center;
	justify-content: space-around;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
}

.mobile-footer-menu__entry {
	flex: 1 1 0;
	display: flex;
	justify-content: center;
}

.mobile-footer-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(2, 117, 105, 0.08);
	color: #027569;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
}

.mobile-footer-action::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(2, 117, 105, 0.1), rgba(1, 94, 84, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 16px;
}

.mobile-footer-action svg {
	width: 28px;
	height: 28px;
	color: inherit;
	position: relative;
	z-index: 1;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-footer-action:active {
	transform: scale(0.95);
}

.mobile-footer-action:active svg {
	transform: scale(0.9);
}

.mobile-footer-action:focus,
.mobile-footer-action:hover {
	color: #015e54;
	background: rgba(2, 117, 105, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(2, 117, 105, 0.2);
}

.mobile-footer-action:focus::before,
.mobile-footer-action:hover::before {
	opacity: 1;
}

.mobile-footer-action:focus svg,
.mobile-footer-action:hover svg {
	transform: scale(1.1);
}

/* Special styling for WhatsApp */
.mobile-footer-action.engintag_whatsapp {
	background: rgba(37, 211, 102, 0.08);
	color: #25d366;
}

.mobile-footer-action.engintag_whatsapp::before {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(20, 180, 80, 0.1));
}

.mobile-footer-action.engintag_whatsapp:focus,
.mobile-footer-action.engintag_whatsapp:hover {
	color: #20b450;
	background: rgba(37, 211, 102, 0.15);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

/* Show on mobile devices only */
@media (max-width: 991px) {
	.mobile-footer-menu {
		display: block;
	}

	body {
		padding-bottom: 80px;
	}
}

/* Adjust for smaller screens */
@media (max-width: 575px) {
	.mobile-footer-menu {
		padding: 10px 0;
	}

	.mobile-footer-action {
		width: 52px;
		height: 52px;
		border-radius: 14px;
	}

	.mobile-footer-action svg {
		width: 26px;
		height: 26px;
	}
}

@media (max-width: 480px) {
	.mobile-footer-action {
		width: 48px;
		height: 48px;
		border-radius: 12px;
	}

	.mobile-footer-action svg {
		width: 24px;
		height: 24px;
	}
}

/* Hide on desktop */
@media (min-width: 992px) {
	.mobile-footer-menu {
		display: none !important;
	}
}
