/* ==========================================================
   ORIENTAS Srl — Stile condiviso pagine interne (v4)
   Allineato all'aspetto REALE della home (screenshot):
   sfondo grigio chiaro con pattern a rete (grigio-1920.png),
   testo grigio scuro, font Verdana, accento rosso (logo).
   ========================================================== */

body.op-page {
	font-family: 'Verdana', Arial, sans-serif;
	color: #333333;
	margin: 0;
	background-color: #e7e7e7;
	background-image: url('grigio-1920.png');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding-top: 115px; /* spazio per il menu fisso in alto (logo più grande) */
}

/* ---------- NAVBAR (fissa in alto, scura per contrasto sul fondo chiaro) ---------- */
.op-navbar {
	display: block !important;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 998;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	padding: 10px 0;
	box-sizing: border-box;
}
.op-navbar-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	flex-wrap: wrap;
}
.op-navbar .op-logo img { height: 78px; display: block; }
.op-nav {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.op-nav > li { position: relative; }
.op-nav > li > a {
	display: inline-block;
	padding: 8px 18px;
	color: #333333 !important;
	font-size: 25px;
	font-family: 'Verdana', Arial, sans-serif;
	text-decoration: none;
}
.op-nav > li > a:hover,
.op-nav > li > a.op-active {
	color: #e2231a !important;
}

/* Dropdown "Servizi" via hover */
.op-dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: #ffffff;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
	z-index: 1000;
	list-style: none;
	margin: 0;
	padding: 6px 0;
	text-align: left;
}
.op-dropdown:hover .op-dropdown-menu,
.op-dropdown.op-open .op-dropdown-menu {
	display: block;
}
.op-dropdown-menu li a {
	display: block;
	padding: 12px 20px;
	color: #333333 !important;
	font-size: 16px !important;
	font-family: 'Verdana', Arial, sans-serif !important;
}
.op-dropdown-menu li a:hover {
	background: #f2f2f2;
	color: #e2231a !important;
}

/* Toggle mobile (autonomo) */
.op-navbar-toggle-btn {
	display: none;
	background: #f2f2f2;
	border: 0;
	color: #333333;
	font-size: 20px;
	width: 42px;
	height: 42px;
	border-radius: 4px;
	cursor: pointer;
}
@media (max-width: 767px) {
	.op-navbar-toggle-btn { display: inline-block; }
	.op-nav { display: none; width: 100%; flex-direction: column; gap: 0; margin-top: 12px; }
	.op-nav.op-show { display: flex; }
	.op-nav > li { width: 100%; }
	.op-nav > li > a { display: block; padding: 12px 6px; }
	.op-dropdown-menu { position: static; box-shadow: none; background: #f7f7f7; }
	.op-dropdown-menu li a { color: #333333 !important; }
	.op-dropdown-menu li a:hover { background: #ececec; color: #e2231a !important; }
}

/* ---------- HERO di pagina interna ---------- */
.op-page-hero {
	text-align: center;
	padding: 55px 20px 30px;
}
.op-page-hero .op-eyebrow {
	display: none;
}
.op-page-hero h1 {
	font-family: 'Verdana', Arial, sans-serif;
	font-size: 44px;
	font-weight: bold;
	line-height: 1.3;
	color: #333333;
	margin: 0;
}

/* ---------- CARD contenuto (bianca, per leggibilità sul pattern a rete) ---------- */
.op-content-wrap {
	padding: 10px 20px 70px;
}
.op-card {
	max-width: 840px;
	margin: 0 auto;
	background: #ffffff;
	color: #333333;
	border-radius: 6px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	padding: 45px 50px;
	text-align: left;
}
.op-card h2 {
	font-family: 'Verdana', Arial, sans-serif;
	color: #333333;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 34px;
	margin-bottom: 14px;
	text-align: left;
	border-left: 4px solid #e2231a;
	padding-left: 12px;
}
.op-card h2:first-child { margin-top: 0; }
.op-card p {
	color: #7f7f7f;
	font-size: 19px;
	line-height: 1.75;
	margin: 0 0 18px;
	padding: 0;
	text-align: left;
}
.op-card ul { list-style: none; margin: 0 0 22px; padding: 0; text-align: left; }
.op-card ul li {
	color: #7f7f7f;
	font-size: 19px;
	line-height: 1.7;
	margin-bottom: 10px;
	padding: 0 0 0 20px;
	background: none;
	position: relative;
	text-align: left;
}
.op-card ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e2231a;
}
.op-card a { color: #e2231a; }
.op-card a:hover { color: #a5150f; }
.op-cta {
	font-style: italic;
	color: #333333;
	font-weight: normal;
}
.op-cta a { color: #e2231a; text-decoration: underline; }
.op-cta a:hover { color: #a5150f; }

@media (max-width: 600px) {
	.op-card { padding: 30px 22px; }
	.op-page-hero h1 { font-size: 26px; }
}

/* ---------- FOOTER ---------- */
.op-footer {
	background: rgba(40,40,40,0.9);
	color: #ffffff;
	padding: 30px 20px;
	text-align: center;
	font-size: 13px;
	line-height: 1.9;
	font-family: 'Verdana', Arial, sans-serif;
}
.op-footer a { color: #ffffff; text-decoration: underline; }
.op-footer a:hover { color: #e2231a; }

/* ---------- FORM CONTATTI ---------- */
.op-card .op-form label {
	display: block;
	text-align: left;
	font-size: 14px;
	color: #333333;
	margin: 16px 0 6px;
}
.op-card .op-form input,
.op-card .op-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #cccccc;
	border-radius: 3px;
	font-family: 'Verdana', Arial, sans-serif;
	font-size: 14px;
	color: #333333;
}
.op-card .op-form button {
	margin-top: 22px;
	background: #e2231a;
	color: #ffffff;
	border: none;
	padding: 12px 28px;
	font-size: 15px;
	border-radius: 3px;
	cursor: pointer;
}
.op-card .op-form button:hover { background: #a5150f; }
