/* ============ RD Fabricators — main.css ============ */
:root {
	--red: #e02128;
	--red-dark: #b81b21;
	--navy: #0c1f3a;
	--navy-deep: #081527;
	--charcoal: #23272e;
	--ink: #1b2330;
	--body: #45505e;
	--line: #e3e8ee;
	--bg-alt: #f4f6f9;
	--white: #ffffff;
	--green: #25d366;
	--font-head: 'Oswald', 'Arial Narrow', sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--radius: 10px;
	--shadow: 0 10px 30px rgba(8, 21, 39, 0.12);
	--container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	color: var(--body);
	font-size: 16px;
	line-height: 1.65;
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; text-transform: uppercase; letter-spacing: 0.02em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; margin-top: 36px; }
.ic { display: inline-flex; }
.ic svg { width: 22px; height: 22px; }
.arrow { margin-left: 6px; transition: transform 0.2s; }
a:hover .arrow { transform: translateX(4px); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
	font-size: 14px; padding: 14px 26px; border-radius: 6px; transition: all 0.2s; white-space: nowrap;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { filter: brightness(0.92); }
.btn-green .ic svg { width: 20px; height: 20px; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 1000;
	background: #fff; border-bottom: 1px solid var(--line);
	box-shadow: 0 2px 14px rgba(8, 21, 39, 0.07);
}
.header-inner { display: flex; align-items: center; gap: 22px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand-logo { height: 64px; width: auto; display: block; }
.main-nav { display: flex; gap: 4px; }
.main-nav a {
	font-family: var(--font-head); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
	color: var(--ink); padding: 8px 12px; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); border-bottom-color: var(--red); }
.header-contact { display: flex; flex-direction: column; gap: 3px; }
.header-line { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--navy); }
.header-line .ic svg { width: 15px; height: 15px; color: var(--red); }
.header-line:hover { color: var(--red); }
.header-cta { padding: 12px 20px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, #0a1a30 100%); color: #fff; position: relative; overflow: hidden; }
.hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(700px 360px at 85% 10%, rgba(224, 33, 40, 0.14), transparent 65%),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 90px);
	pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; padding-top: 72px; padding-bottom: 72px; position: relative; }
.kicker { font-family: var(--font-head); color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 14px; margin-bottom: 16px; }
.hero h1 { color: #fff; font-size: clamp(38px, 4.6vw, 58px); font-weight: 700; margin-bottom: 20px; }
.hero h1 .red { color: var(--red); }
.hero .lead { font-size: 17px; color: #c4cedb; max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; display: grid; grid-template-columns: 1fr; gap: 14px; }
.hero-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.hero-main img { width: 100%; height: 340px; object-fit: cover; }
.hero-main figcaption, .hero-insets figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(transparent, rgba(8, 21, 39, 0.85));
	color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em;
	font-size: 13px; padding: 26px 16px 12px;
}
.hero-insets { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-insets figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-insets img { width: 100%; height: 150px; object-fit: cover; }
.hero-insets figcaption { font-size: 11.5px; padding: 20px 12px 9px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.07); position: relative; }
.trust-inner { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item {
	display: flex; align-items: center; gap: 11px; padding: 20px 14px;
	color: #d7dee8; font-family: var(--font-head); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3;
}
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.08); }
.trust-item .ic svg { width: 30px; height: 30px; color: var(--red); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--navy); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title { font-size: clamp(26px, 3vw, 36px); font-weight: 700; position: relative; margin-bottom: 10px; }
.section-head .section-title::after {
	content: ""; display: block; width: 64px; height: 4px; background: var(--red); margin: 14px auto 0; border-radius: 2px;
}
.section-sub { color: var(--body); font-size: 16px; }
.section.dark .section-title, .section.dark h3 { color: #fff; }
.section.dark .section-sub, .section.dark p { color: #b9c4d2; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 24px; }
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	transition: transform 0.22s, box-shadow 0.22s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { position: relative; }
.card-img img { width: 100%; height: 150px; object-fit: cover; }
.card-icon {
	position: absolute; left: 16px; bottom: -22px; width: 46px; height: 46px;
	background: var(--navy); border: 2px solid var(--red); border-radius: 50%;
	display: flex; align-items: center; justify-content: center; color: #fff;
}
.card-icon svg { width: 22px; height: 22px; }
.card-body { padding: 22px 18px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 16.5px; margin-bottom: 10px; }
.card-body p { font-size: 13.8px; flex: 1; }
.card-link { font-family: var(--font-head); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 16px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 400px; object-fit: cover; }
.about-badge {
	position: absolute; right: -16px; bottom: -16px; background: var(--red); color: #fff;
	border-radius: var(--radius); padding: 18px 22px; text-align: center; box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: var(--font-head); font-size: 32px; line-height: 1; }
.about-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.about-text .section-title { margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 10px; }

.check-list { list-style: none; margin: 18px 0; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 10px; color: var(--ink); font-weight: 500; }
.check-list li::before {
	content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px;
	background: var(--red); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
}

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s; }
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-item .ic svg { width: 34px; height: 34px; color: var(--red); margin-bottom: 14px; }
.why-item h3 { font-size: 16px; margin-bottom: 8px; }
.why-item p { font-size: 14px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-home { grid-template-columns: repeat(3, 1fr); }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(8,21,39,0.08); }
.gallery img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.3s; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(transparent, rgba(8,21,39,0.88));
	color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.07em;
	font-size: 13.5px; padding: 30px 16px 13px;
}

/* ---------- Featured project ---------- */
.featured-project { display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.featured-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 380px; object-fit: cover; }
.tag {
	display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head);
	font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
	padding: 6px 14px; border-radius: 4px; margin-bottom: 14px;
}
.featured-text .section-title { margin-bottom: 14px; }
.featured-text .btn { margin-top: 12px; }

/* ---------- Process ---------- */
.process { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.process li { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 26px 20px; position: relative; }
.step-num {
	display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff;
	font-family: var(--font-head); font-size: 19px; font-weight: 700; margin-bottom: 16px;
}
.process h3 { font-size: 15.5px; color: #fff; margin-bottom: 8px; }
.process p { font-size: 13.5px; color: #b9c4d2; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--charcoal); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 18px; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.09); }
.stat strong { display: block; font-family: var(--font-head); font-size: 34px; color: var(--red); line-height: 1.1; }
.stat span { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.07em; color: #c5ccd6; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(100deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 44px; padding-bottom: 44px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.cta-band p { color: #ffd9da; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #aeb9c7; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 44px; padding-top: 64px; padding-bottom: 40px; }
.site-footer h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: 0.08em; }
.footer-tag { color: var(--red); font-family: var(--font-head); text-transform: uppercase; font-size: 12.5px; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { color: #aeb9c7; padding: 5px 0; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact a { color: #aeb9c7; }
.footer-contact a:hover { color: #fff; }
.footer-contact .ic svg { width: 17px; height: 17px; color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; padding-bottom: 22px; font-size: 13px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 1200;
	display: flex; align-items: center; gap: 10px;
	background: var(--green); color: #fff; border-radius: 999px;
	padding: 13px 20px 13px 15px; font-weight: 600; font-size: 14px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.28); transition: transform 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ---------- Page hero ---------- */
.page-hero {
	background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
	color: #fff; padding: 64px 0; position: relative; overflow: hidden;
}
.page-hero::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(520px 240px at 88% 20%, rgba(224,33,40,0.16), transparent 65%);
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 4vw, 46px); position: relative; z-index: 1; }
.page-hero p { color: #c4cedb; margin-top: 8px; position: relative; z-index: 1; }

/* ---------- More services ---------- */
.more-services { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.more-item {
	display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
	border-radius: var(--radius); padding: 26px 24px; transition: transform 0.2s, box-shadow 0.2s;
}
.more-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.more-item .ic svg { width: 32px; height: 32px; color: var(--red); flex: none; margin-top: 3px; }
.more-item h3 { font-size: 16.5px; margin-bottom: 6px; }
.more-item p { font-size: 14px; }

/* ---------- Forms (CF7) ---------- */
.quote-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.quote-form .section-sub, .quote-form .section-title { text-align: left; }
.quote-form .section-title { margin-bottom: 6px; }
.quote-form .section-sub { margin-bottom: 26px; }
.wpcf7 form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wpcf7 form > p { margin: 0; display: contents; }
.wpcf7 .full { grid-column: 1 / -1; }
.wpcf7 label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.wpcf7 input[type="text"], .wpcf7 input[type="tel"], .wpcf7 input[type="email"],
.wpcf7 select, .wpcf7 textarea, .wpcf7 input[type="file"] {
	width: 100%; padding: 13px 14px; margin-top: 6px;
	border: 1px solid var(--line); border-radius: 6px; font-family: var(--font-body); font-size: 14.5px;
	background: #fff; color: var(--ink);
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { outline: 2px solid rgba(224,33,40,0.35); border-color: var(--red); }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7-radio { display: flex; gap: 18px; margin-top: 8px; flex-wrap: wrap; }
.wpcf7-radio .wpcf7-list-item { margin: 0; }
.wpcf7-radio label { display: flex; align-items: center; gap: 7px; font-weight: 500; cursor: pointer; }
.wpcf7 input[type="submit"] {
	background: var(--red); color: #fff; border: 0; cursor: pointer;
	font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
	font-size: 14.5px; padding: 15px 30px; border-radius: 6px; transition: background 0.2s;
	grid-column: 1 / -1; justify-self: start;
}
.wpcf7 input[type="submit"]:hover { background: var(--red-dark); }
.wpcf7 form .wpcf7-response-output { grid-column: 1 / -1; margin: 6px 0 0; padding: 12px 14px; border-radius: 6px; }
.wpcf7-not-valid-tip { font-size: 12px; color: var(--red); }
.form-missing { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 6px; padding: 18px; }

.quote-aside { display: flex; flex-direction: column; gap: 22px; }
.aside-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.aside-card h3 { font-size: 18px; margin-bottom: 14px; }
.aside-card p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 600; }
.aside-card p a { color: var(--ink); }
.aside-card .ic svg { width: 19px; height: 19px; color: var(--red); }
.aside-card .btn { margin-top: 8px; }
.dark-card { background: var(--navy); border: 0; }
.dark-card h3 { color: #fff; }
.mini-steps { margin-left: 18px; color: #c4cedb; }
.mini-steps li { margin-bottom: 8px; }

/* ---------- Contact page ---------- */
.contact-info .section-title { margin-bottom: 4px; }
.contact-info .section-sub { color: var(--red); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin-bottom: 22px; }
.contact-lines p { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; font-size: 16px; font-weight: 600; }
.contact-lines a { color: var(--ink); }
.contact-lines a:hover { color: var(--red); }
.contact-lines .ic svg { width: 20px; height: 20px; color: var(--red); }
.contact-info .btn-green { margin: 10px 0 26px; }
.hours-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 22px; }
.hours-card h3 { font-size: 16px; margin-bottom: 10px; }
.hours-card p { font-size: 14px; margin-bottom: 4px; }
.hours-card .note { font-size: 12px; color: #8b95a3; font-style: italic; margin-top: 8px; }
.social-row { display: flex; align-items: center; gap: 12px; }
.social-row span { font-size: 13px; font-weight: 600; color: var(--ink); }
.social-row a {
	width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff;
	display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 18px; height: 18px; }
.map-section { padding-bottom: 84px; }
.map-placeholder {
	border: 2px dashed #c3ccd7; border-radius: var(--radius); background: var(--bg-alt);
	min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 12px; text-align: center; color: var(--body);
}
.map-placeholder .ic svg { width: 38px; height: 38px; color: var(--red); }

.content-narrow { max-width: 820px; }
.post-item { margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
	.header-contact { display: none; }
	.cards-5 { grid-template-columns: repeat(3, 1fr); }
	.trust-inner { grid-template-columns: repeat(3, 1fr); }
	.trust-item:nth-child(4) { border-left: 0; }
	.process { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
	.main-nav {
		display: none; position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; flex-direction: column; padding: 12px 24px 20px;
		border-bottom: 1px solid var(--line); box-shadow: 0 14px 24px rgba(8,21,39,0.12);
	}
	.main-nav.open { display: flex; }
	.main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
	.nav-toggle { display: block; }
	.header-cta { display: none; }
	.hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; padding-bottom: 52px; }
	.about-grid, .featured-project, .quote-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.cards-5, .cards-3, .why-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
	.stats-inner { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(3) { border-left: 0; }
	.more-services { grid-template-columns: 1fr; }
	.about-media img { height: 320px; }
}
@media (max-width: 600px) {
	.section { padding: 56px 0; }
	.cards-5, .cards-3, .why-grid, .gallery, .process, .trust-inner { grid-template-columns: 1fr; }
	.trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
	.stats-inner { grid-template-columns: 1fr 1fr; }
	.hero-insets { grid-template-columns: 1fr 1fr; }
	.hero-main img { height: 240px; }
	.wpcf7 form { grid-template-columns: 1fr; }
	.cta-band-inner { flex-direction: column; text-align: center; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.whatsapp-float span { display: none; }
	.whatsapp-float { padding: 14px; }
	.brand-logo { height: 48px; }
}
