:root {
	--blue: #082f57;
	--blue2: #0d477e;
	--orange: #f28c28;
	--orange2: #ffae42;
	--light: #f4f7fb;
	--text: #243447;
	--muted: #667085;
	--white: #fff;
	--dark: #061f3a;
	--border: #dde6f0;
	--shadow: 0 16px 40px rgba(8, 47, 87, .12);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.65
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

.container {
	width: min(1180px, 92%);
	margin: auto
}

.topbar {
	background: var(--dark);
	color: #dce8f5;
	font-size: .92rem;
	padding: 8px 0
}

.topbar .container,
.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.topbar a {
	color: #fff;
	font-weight: 700
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border)
}

.logo {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 900;
	color: var(--blue);
	font-size: 1.4rem;
	padding: 14px 0;
	transition: all 0.3s ease;
}

.logo-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue), var(--orange));
	display: grid;
	place-items: center;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
}

.logo-icon svg {
	width: 26px;
	height: 26px;
	transition: transform 0.3s ease;
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.logo-text strong {
	font-size: 1.3rem;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.logo-text small {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--muted);
}

.logo:hover .logo-icon {
	transform: rotate(8deg) scale(1.08);
	box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

.logo:hover .logo-icon svg {
	transform: rotate(-15deg);
}

.logo:hover .logo-text strong {
	color: var(--orange);
}
.footer-brand {
	display: block;
}

.footer-logo {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 14px;
	margin-bottom: 18px;
	color: white;
}

.footer-logo-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue), var(--orange));
	display: grid;
	place-items: center;
	box-shadow: 0 10px 25px rgba(0,0,0,0.20);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.footer-logo-icon svg {
	width: 26px;
	height: 26px;
}

.footer-logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.footer-logo-text strong {
	color: white;
	font-size: 1.3rem;
	letter-spacing: 1px;
	font-weight: 900;
}

.footer-logo-text small {
	color: #dce8f5;
	font-size: 0.7rem;
	font-weight: 600;
}

.footer-logo:hover .footer-logo-icon {
	transform: rotate(8deg) scale(1.08);
}

.footer-logo:hover .footer-logo-text strong {
	color: var(--orange2);
}

.navlinks {
	display: flex;
	gap: 22px;
	align-items: center
}

.navlinks a {
	font-weight: 700;
	color: #24415f
}

.navlinks a:hover {
	color: var(--orange)
}

.menu-btn {
	display: none;
	background: var(--blue);
	color: white;
	border: 0;
	border-radius: 10px;
	padding: 10px 12px;
	font-weight: 800
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 20px;
	border-radius: 999px;
	font-weight: 800;
	transition: .2s;
	border: 2px solid transparent
}

.btn-primary {
	background: var(--orange);
	color: white;
	box-shadow: 0 10px 26px rgba(242, 140, 40, .28)
}

.btn-primary:hover {
	background: #df7815;
	transform: translateY(-2px)
}

.btn-secondary {
	background: white;
	color: var(--blue);
	border-color: #cfe0f2
}

.btn-secondary:hover {
	border-color: var(--orange);
	color: var(--orange)
}

.btn-dark {
	background: var(--blue);
	color: white
}

.hero {
	position: relative;
	overflow: hidden;
	color: white;
	padding: 100px 0 78px;
	background: linear-gradient(120deg, rgba(4, 29, 54, .98), rgba(11, 79, 143, .94))
}

.hero-bg {
	pointer-events: none;
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 10%, rgba(242, 140, 40, .42), transparent 25%), linear-gradient(135deg, rgba(255, 255, 255, .08) 0 25%, transparent 25% 100%);
	opacity: .95
}

.hero:after {
	content: "";
	position: absolute;
	right: -160px;
	bottom: -180px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08)
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 44px;
	align-items: center;
		position: relative;
	z-index: 2;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 20px;
	font-weight: 700
}

.hero h1 {
	font-size: clamp(2.1rem, 5vw, 4.1rem);
	line-height: 1.08;
	margin-bottom: 20px
}

.hero p {
	font-size: 1.17rem;
	color: #e7eef7;
	margin-bottom: 28px;
	max-width: 700px
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	position: relative;
	z-index: 5;
}

.hero-card {
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 26px;
	padding: 26px;
	box-shadow: var(--shadow)
}

.hero-card h3 {
	font-size: 1.5rem;
	margin-bottom: 14px
}

.check-list {
	list-style: none;
	display: grid;
	gap: 12px
}

.check-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start
}

.check-list li:before {
	content: '✓';
	background: var(--orange);
	color: white;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: inline-grid;
	place-items: center;
	flex: 0 0 22px;
	font-weight: 900
}

.section {
	padding: 76px 0
}

.section-light {
	background: var(--light)
}

.section-title {
	text-align: center;
	margin-bottom: 42px
}

.section-title span {
	color: var(--orange);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .86rem
}

.section-title h2 {
	font-size: clamp(1.8rem, 3vw, 2.65rem);
	color: var(--blue);
	line-height: 1.18;
	margin-top: 6px
}

.section-title p {
	color: var(--muted);
	max-width: 730px;
	margin: 12px auto 0
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px
}
.icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: #fff3e5;
	color: var(--orange);
	display: grid;
	place-items: center;
	font-size: 1.7rem;
	margin-bottom: 16px
}

.service-card,
.info-card,
.legal-card,
.real-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 26px;
	box-shadow: 0 8px 26px rgba(8, 47, 87, .07);
	transition: .2s
}

.service-card:hover,
.real-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow)
}


.service-img {
	height: 180px;
	border-radius: 18px;
	margin-bottom: 18px;
	background-size: cover;
	background-position: center;
	box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.15);
	transition: 0.3s ease;
}

/* effet hover pro */
.service-card:hover .service-img {
	transform: scale(1.03);
	box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.05);
}

.service-card h3,
.info-card h3,
.real-card h3 {
	color: var(--blue);
	font-size: 1.25rem;
	margin-bottom: 8px
}

.service-card p,
.info-card p,
.real-card p {
	color: var(--muted)
}

.advantages {
	margin-top: 14px;
	list-style: none;
	display: grid;
	gap: 7px;
	color: #425466
}

.advantages li:before {
	content: '• ';
	color: var(--orange);
	font-weight: 900
}

.cta-band {
	background: linear-gradient(120deg, var(--blue), var(--blue2));
	color: white;
	border-radius: 28px;
	padding: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-shadow: var(--shadow)
}

.cta-band h2 {
	font-size: 2rem
}

.about-split {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 42px;
	align-items: center
}


.visual-card {
	min-height: 440px;
	border-radius: 34px;
	background: linear-gradient(145deg, #fff, #eaf4ff);
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	text-align: center;
	padding: 36px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden
}

.visual-card:before {
	content: "";
	position: absolute;
	width: 270px;
	height: 270px;
	border-radius: 50%;
	background: rgba(242, 140, 40, .16);
	top: -80px;
	right: -80px
}

.visual-card:after {
	content: "";
	position: absolute;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: rgba(11, 79, 143, .12);
	bottom: -70px;
	left: -60px
}

.visual-top {
	position: relative;
	z-index: 1;
	font-size: 4.6rem;
	font-weight: 900;
	color: var(--blue);
	letter-spacing: -.06em
}
.visual-lines {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	margin: 22px 0
}

.visual-lines span {
	display: block;
	width: 230px;
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--blue), var(--orange))
}

.visual-lines span:nth-child(2) {
	width: 170px;
	margin: auto
}

.visual-lines span:nth-child(3) {
	width: 110px;
	margin: auto
}

.visual-card p {
	position: relative;
	z-index: 1;
	color: var(--muted);
	font-weight: 800
}


.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 24px
}

.stat {
	background: white;
	border-radius: 18px;
	padding: 20px;
	text-align: center;
	border: 1px solid var(--border)
}

.stat strong {
	display: block;
	font-size: 2rem;
	color: var(--orange)
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px
}

.quote {
	background: white;
	border-left: 5px solid var(--orange);
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 8px 22px rgba(8, 47, 87, .07)
}

.quote p {
	color: #425466
}

.quote strong {
	display: block;
	color: var(--blue);
	margin-top: 14px
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.real-img {
	height: 180px;
	border-radius: 18px;
	background: linear-gradient(135deg, #d8e6f4, #fff3e5);
	display: grid;
	place-items: center;
	font-size: 3rem;
	margin-bottom: 16px
}

.contact-wrap {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 30px;
	align-items: start
}

.form {
	background: white;
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--shadow)
}

.field {
	margin-bottom: 16px
}

.field label {
	display: block;
	font-weight: 800;
	color: var(--blue);
	margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid #cdd9e6;
	border-radius: 14px;
	padding: 13px 14px;
	font-size: 1rem
}

.field textarea {
	min-height: 145px;
	resize: vertical
}

.notice {
	padding: 14px;
	border-radius: 14px;
	margin-bottom: 18px
}

.success {
	background: #e9f8ef;
	color: #166534;
	border: 1px solid #b7e4c7
}

.error {
	background: #fff1f1;
	color: #9f1239;
	border: 1px solid #fecdd3
}

.map {
	border: 0;
	width: 100%;
	height: 320px;
	border-radius: 20px;
	margin-top: 18px
}

.footer {
	background: var(--dark);
	color: #dce8f5;
	padding: 52px 0 18px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 28px
}

.footer h3 {
	color: white;
	margin-bottom: 12px
}

.footer a {
	display: block;
	color: #dce8f5;
	margin: 7px 0
}

.footer a:hover {
	color: var(--orange2)
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .13);
	margin-top: 32px;
	padding-top: 18px;
	text-align: center;
	font-size: .92rem
}

.page-hero {
	background: linear-gradient(120deg, var(--blue), var(--blue2));
	color: white;
	padding: 68px 0
}

.page-hero h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.12
}

.page-hero p {
	color: #e7eef7;
	max-width: 760px;
	margin-top: 12px
}

.legal-content {
	max-width: 920px;
	margin: auto
}

.legal-content h2 {
	color: var(--blue);
	margin: 28px 0 8px
}

.legal-content p,
.legal-content li {
	color: #526477
}

.legal-content ul {
	padding-left: 22px
}

.floating-call {
	position: fixed;
	right: 18px;
	bottom: 18px;
	background: var(--orange);
	color: white;
	padding: 14px 18px;
	border-radius: 999px;
	font-weight: 900;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
	z-index: 60
}
.service-card {
	overflow: hidden;
	padding: 0;
}

.service-photo {
	height: 190px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.service-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8,47,87,0.05), rgba(8,47,87,0.55));
}

.service-card-content {
	padding: 26px;
}

.service-card:hover .service-photo {
	transform: scale(1.04);
}

.service-photo {
	transition: transform 0.35s ease;
}

.service-card h3 {
	font-size: 1.35rem;
}
@media(max-width:900px) {

	.grid-3,
	.gallery,
	.testimonials,
	.footer-grid,
	.hero-grid,
	.about-split,
	.contact-wrap {
		grid-template-columns: 1fr
	}

	.grid-2 {
		grid-template-columns: 1fr
	}

	.navlinks {
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: white;
		display: none;
		flex-direction: column;
		padding: 20px;
		border-bottom: 1px solid var(--border)
	}

	.navlinks.open {
		display: flex
	}

	.menu-btn {
		display: block
	}

	.cta-band {
		flex-direction: column;
		text-align: center
	}

	.stats {
		grid-template-columns: 1fr
	}

	.topbar .container {
		flex-direction: column;
		gap: 6px
	}

	.floating-call {
		left: 18px;
		text-align: center
	}

	.hero {
		padding: 64px 0
	}
}