/* ============================================================
   MASTER.CSS — Richardson Decorating Ltd
   Clean build — rdc- class system, no legacy floats
   ============================================================ */

/* ---- RESET & BOX MODEL ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ---- ROOT VARIABLES ---- */
:root {
  --rdc-blue:       #004c73;
  --rdc-blue-dark:  #003652;
  --rdc-amber:      #f2a900;
  --rdc-amber-dark: #d99500;
  --rdc-grey-bg:    #f4f6f8;
  --rdc-text:       #333333;
  --rdc-text-light: #555555;
  --rdc-white:      #ffffff;
  --rdc-max-width:  1200px;
  --rdc-radius:     6px;
  --font-body:      'Open Sans', sans-serif;
  --font-heading:   'Poppins', sans-serif;
}

/* ---- BASE ---- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rdc-text);
  background: var(--rdc-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  color: var(--rdc-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--rdc-blue-dark);
}

address {
  font-style: normal;
  line-height: 1.9;
}

/* ---- HEADINGS ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--rdc-blue);
  margin-bottom: 0.75em;
}

h1 { font-size: 2.4em; }
h2 { font-size: 1.9em; }
h3 { font-size: 1.15em; }

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ---- CONTAINER ---- */
.rdc-container {
  width: 90%;
  max-width: var(--rdc-max-width);
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.rdc-btn {
  display: inline-block;
  background: var(--rdc-amber);
  color: var(--rdc-blue-dark);
  font-family: var(--font-heading);
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.85em 1.8em;
  border-radius: var(--rdc-radius);
  border: 2px solid var(--rdc-amber);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.rdc-btn:hover {
  background: var(--rdc-amber-dark);
  border-color: var(--rdc-amber-dark);
  color: var(--rdc-white);
}

.rdc-btn--outline {
  background: transparent;
  color: var(--rdc-white);
  border-color: var(--rdc-white);
}

.rdc-btn--outline:hover {
  background: var(--rdc-white);
  color: var(--rdc-blue);
  border-color: var(--rdc-white);
}

.rdc-btn--blue {
  background: var(--rdc-blue);
  border-color: var(--rdc-blue);
  color: var(--rdc-white);
}

.rdc-btn--blue:hover {
  background: var(--rdc-blue-dark);
  border-color: var(--rdc-blue-dark);
  color: var(--rdc-white);
}

/* ---- HEADER ---- */
.rdc-header {
  background: var(--rdc-white);
  border-bottom: 3px solid var(--rdc-blue);
  padding: 0.75em 0;
}

.rdc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  width: 90%;
  max-width: var(--rdc-max-width);
  margin: 0 auto;
}

.rdc-header__logo img {
  max-height: 70px;
  width: auto;
}

.rdc-header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25em;

}
.titletext {
font-size: 0.8em;
  font-style:italic;
}

.rdc-header__phone {
  font-family: var(--font-heading);
  font-size: 1.3em;
  font-weight: 700;
  color: var(--rdc-blue);
}

.rdc-header__phone:hover {
  color: var(--rdc-amber);
}

.rdc-header__email {
  font-size: 0.9em;
  color: var(--rdc-text-light);
}

.rdc-header__email:hover {
  color: var(--rdc-amber);
}

/* ---- NAVIGATION ---- */
.rdc-nav {
  background: var(--rdc-blue);
  position: relative;
  z-index: 100;
}

.rdc-nav__list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rdc-nav__list li a {
  display: block;
  padding: 1em 1.2em;
  color: var(--rdc-white);
  font-family: var(--font-heading);
  font-size: 0.9em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, color 0.2s ease;
}

.rdc-nav__list li a:hover,
.rdc-nav__list li a.active {
  background: var(--rdc-amber);
  color: var(--rdc-white);
}

.rdc-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1em;
  margin-left: auto;
}

.rdc-nav__bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--rdc-white);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.rdc-nav__toggle.is-active .rdc-nav__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.rdc-nav__toggle.is-active .rdc-nav__bar:nth-child(2) {
  opacity: 0;
}
.rdc-nav__toggle.is-active .rdc-nav__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- HERO ---- */
.rdc-hero {
  position: relative;
  background-color: var(--rdc-blue);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.rdc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.55);
}

.rdc-hero__content {
  position: relative;
  z-index: 2;
  padding: 3em 1.5em;
  max-width: 780px;
  margin: 0 auto;
}

.rdc-hero__title {
  font-family: var(--font-heading);
  font-size: 2.8em;
  font-weight: 700;
  color: var(--rdc-white);
  line-height: 1.15;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.rdc-hero__subtitle {
  color: #dce8f0;
  font-size: 1.15em;
  margin-bottom: 1.8em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.6;
}

.rdc-hero__buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- TRUST STRIP ---- */
.rdc-trust {
  background: var(--rdc-blue-dark);
  padding: 0;
}

.rdc-trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--rdc-max-width);
  margin: 0 auto;
}

.rdc-trust__item {
  flex: 1 1 220px;
  text-align: center;
  padding: 1em 1.2em;
  color: var(--rdc-white);
  font-family: var(--font-heading);
  font-size: 0.9em;
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.rdc-trust__item:last-child {
  border-right: none;
}

/* ---- SECTIONS ---- */
.rdc-section {
  padding: 4em 0;
}

.rdc-section--grey {
 background: var(--rdc-grey-bg);  
  padding: 4em 0;
}

.rdc-section__title {
  text-align: center;
  margin-bottom: 2.5em;
}

.rdc-section__title h2 {
  margin-bottom: 0.4em;
}

.rdc-section__title p {
  color: var(--rdc-text-light);
  font-size: 1.05em;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- ABOUT ---- */
.rdc-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
}

.rdc-about__text h2 {
  margin-bottom: 0.6em;
}

.rdc-about__text p {
  color: var(--rdc-text-light);
  margin-bottom: 1em;
}

.rdc-about__text .rdc-btn {
  margin-top: 0.5em;
}

.rdc-about__image img {
  width: 100%;
  border-radius: var(--rdc-radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ---- SERVICES GRID ---- */
.rdc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.rdc-service-card {
  background: var(--rdc-white);
  border-top: 4px solid var(--rdc-amber);
  border-radius: var(--rdc-radius);
  padding: 1.5em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.rdc-service-card h3 {
  color: var(--rdc-blue);
  font-size: 1em;
  margin-bottom: 0.6em;
}

.rdc-service-card p {
  color: var(--rdc-text-light);
  font-size: 0.95em;
  margin: 0;
}

/* ---- SECTORS ---- */
.rdc-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  justify-content: center;
}


.rdc-sector-tag {
  display: inline-block;
  background: var(--rdc-blue);
  color: var(--rdc-white);
  font-size: 0.875em;
  font-weight: 600;
  padding: 0.45em 1em;
  border-radius: 2em;
}

/* ---- PROJECTS GRID ---- */
.rdc-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.rdc-project-card {
  background: var(--rdc-white);
  border-radius: var(--rdc-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rdc-project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.rdc-project-card__body {
  padding: 1.2em 1.4em 1.6em;
}

.rdc-project-card__body h3 {
  color: var(--rdc-blue);
  font-size: 1em;
  margin-bottom: 0.4em;
}

.rdc-project-card__body p {
  color: var(--rdc-text-light);
  font-size: 0.9em;
  margin: 0;
}

.rdc-projects-cta {
  text-align: center;
  margin-top: 2em;
}
/* =========================================================
   RECENT PROJECTS – Successful Projects page
   ========================================================= */

.recent-projects-section {
	clear: both;
	margin: 55px 0 0;
	padding: 55px 0 60px;
	background: #eef3f5;
	border-top: 1px solid #d6e0e4;
}

.recent-projects-heading {
	max-width: 760px;
	margin: 0 auto 30px;
	text-align: center;
}

.recent-projects-heading .section-kicker {
	margin: 0 0 8px;
	color: #004c73;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.recent-projects-heading h2 {
	margin: 0 0 12px;
	color: #a04432;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	text-transform: none;
}

.recent-projects-heading h2::before,
.recent-projects-heading h2::after {
	display: none;
}

.recent-projects-heading p:last-child {
	max-width: 650px;
	margin: 0 auto;
	color: #4c5c63;
	font-size: 1.05rem;
}

.recent-projects-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.recent-project-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dce4e7;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(0, 42, 64, 0.10);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recent-project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 42, 64, 0.16);
}

.recent-project-card img {
	display: block;
	width: 100%;
	height: 250px;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: cover;
}

.recent-project-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 30px;
	border-top: 5px solid #004c73;
}

.recent-project-card__content h3 {
	margin: 0 0 14px;
	color: #004c73;
	font-family: 'Poppins', sans-serif;
	font-size: 1.35rem;
	line-height: 1.25;
}

.recent-project-card__content p {
	margin: 0;
	color: #3f4a4f;
	line-height: 1.65;
}

.recent-projects-action {
	margin-top: 32px;
	text-align: center;
}

.recent-projects-action .contact-btn {
	margin: 0;
	background: #f2a900;
	border-color: #f2a900;
	color: #17232b;
}

.recent-projects-action .contact-btn:hover,
.recent-projects-action .contact-btn:focus {
	background: #d99400;
	border-color: #d99400;
	color: #17232b;
}

/* Tablet and mobile */
@media screen and (max-width: 700px) {
	.recent-projects-section {
		margin-top: 35px;
		padding: 40px 0 45px;
	}

	.recent-projects-heading h2 {
		font-size: 1.6rem;
	}

	.recent-projects-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.recent-project-card img {
		height: 220px;
	}

	.recent-project-card__content {
		padding: 22px 20px;
	}
}
/* ---- LOGOS / ACCREDITATIONS ---- */
.rdc-logos {
  background: var(--rdc-white);
  padding: 2.5em 0;
  border-top: 4px solid var(--rdc-grey-bg);
  border-bottom: 4px solid var(--rdc-grey-bg);
}

.rdc-logos__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  flex-wrap: wrap;
}

.rdc-logos__inner img {
  max-height: 70px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.rdc-logos__inner img:hover {
  opacity: 1;
}

/* ---- CONTACT CTA ---- */
.rdc-contact-cta {
  background: var(--rdc-blue);
  padding: 3.5em 0;
}

.rdc-contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
  width: 90%;
  max-width: var(--rdc-max-width);
  margin: 0 auto;
}

.rdc-contact-cta__text h2 {
  color: var(--rdc-white);
  margin-bottom: 0.4em;
  font-size: 1.6em;
}

.rdc-contact-cta__text p {
  color: #b8d4e8;
  margin: 0;
  max-width: 520px;
}

.rdc-contact-cta__buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---- FOOTER ---- */
.rdc-footer {
  background: #111;
  color: #ccc;
  padding: 3em 0 1.5em;
  font-size: 0.9em;
}

.rdc-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2.5em;
}

.rdc-footer__heading {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--rdc-white);
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 1px;
  border-bottom: 1px dotted #444;
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
}

.rdc-footer__col ul {
  list-style: none;
  margin-bottom: 1.5em;
}

.rdc-footer__col ul li {
  padding: 3px 0;
}

.rdc-footer__col ul li a {
  color: #aaa;
  font-size: 0.9em;
}

.rdc-footer__col ul li a:hover {
  color: var(--rdc-white);
}

.rdc-footer__col--contact address {
  color: #aaa;
  line-height: 1.8;
}

.rdc-footer__col--contact a {
  color: #aaa;
}

.rdc-footer__col--contact a:hover {
  color: var(--rdc-white);
}

.rdc-footer__col p {
  color: #aaa;
  font-size: 0.9em;
  margin-bottom: 0.5em;
}

.rdc-footer__col p a {
  color: #aaa;
}

.rdc-footer__col p a:hover {
  color: var(--rdc-white);
}

.rdc-footer__social {
  display: flex;
  gap: 0.5em;
  margin-top: 0.5em;
}

.rdc-footer__social img {
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.rdc-footer__social img:hover {
  opacity: 1;
}

/* ---- BACK TO TOP ---- */
.rdc-top {
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--rdc-blue);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.rdc-top.is-visible {
  opacity: 1;
  visibility: visible;
}
/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */

.rdc-page-hero {
  position: relative;
  background-color: var(--rdc-blue);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rdc-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.60);
}

.rdc-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.5em 1.5em;
}

.rdc-page-hero__title {
  font-family: var(--font-heading);
  font-size: 2.4em;
  font-weight: 700;
  color: var(--rdc-white);
  margin-bottom: 0.3em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================================  
   BREADCRUMB BAR  
   ============================================================ */  
  
.rdc-breadcrumb {  
  background: var(--rdc-grey-bg);  
  border-bottom: 1px solid #dde3e9;  
  padding: 0.6em 0;  
}  
  
.rdc-breadcrumb p {  
  font-size: 0.875em;  
  color: var(--rdc-text-light);  
  margin: 0;  
}  
  
.rdc-breadcrumb a {  
  color: var(--rdc-blue);  
}  
  
.rdc-breadcrumb a:hover {  
  color: var(--rdc-amber);  
}

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */

.rdc-content {
  max-width: 860px;
}

.rdc-content__intro {
  background: var(--rdc-grey-bg);
  border-left: 4px solid var(--rdc-amber);
  padding: 1.2em 1.5em;
  margin-bottom: 2.5em;
  border-radius: 0 var(--rdc-radius) var(--rdc-radius) 0;
}

.rdc-content__intro p {
  margin: 0;
  color: var(--rdc-text);
  font-size: 1em;
  font-weight:bold;
  line-height: 1.7;
}

.rdc-content__intro p + p {
  margin-top: 0.5em;
}

.rdc-content__block {
  margin-bottom: 2.5em;
  padding-bottom: 2.5em;
  border-bottom: 1px solid #e0e6ec;
}

.rdc-content__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rdc-content__block h2 {
  font-size: 1.6em;
  color: var(--rdc-blue);
  margin-bottom: 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--rdc-amber);
  display: inline-block;
}

.rdc-content__block h3 {
  font-size: 1.05em;
  color: var(--rdc-blue-dark);
  margin-top: 1.4em;
  margin-bottom: 0.4em;
}

.rdc-content__block p {
  color: var(--rdc-text-light);
  line-height: 1.8;
}
/* ============================================================  
   SECTION MODIFIER — flush top (removes top padding)  
   ============================================================ */  
  
.rdc-section--flush-top {  
  padding-top: 0;  
}  
  
/* ============================================================  
   PROJECT ARTICLES  
   ============================================================ */  
  
.rdc-project {  
  display: grid;  
  grid-template-columns: 1fr 1fr;  
  gap: 3em;  
  align-items: center;  
  padding: 3em 0;  
  border-bottom: 1px solid #dde3e9;  
}  
  
.rdc-project:last-child {  
  border-bottom: none;  
}  
  
/* Reverse layout — image on right */  
.rdc-project--reverse .rdc-project__images {  
  order: 2;  
}  
  
.rdc-project--reverse .rdc-project__body {  
  order: 1;  
}  
  
/* Portrait image variant */  
.rdc-project--portrait {  
  align-items: start;  
}  
  
.rdc-project--portrait .rdc-project__images img {  
  max-width: 380px;  
  margin: 0 auto;  
}  
  
/* Image */  
.rdc-project__images img {  
  width: 100%;  
  border-radius: var(--rdc-radius);  
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);  
  display: block;  
}  
  
/* Body */  
.rdc-project__body h2 {  
  font-size: 1.4em;  
  color: var(--rdc-blue);  
  margin-bottom: 0.6em;  
  padding-bottom: 0.4em;  
  border-bottom: 2px solid var(--rdc-amber);  
  display: inline-block;  
}  
  
.rdc-project__body p {  
  color: var(--rdc-text-light);  
  line-height: 1.8;  
  margin-bottom: 0.8em;  
}  
  
.rdc-project__body p:last-child {  
  margin-bottom: 0;  
}
/* ============================================================  
   CLIENTS PAGE  
   ============================================================ */  
  
.rdc-clients-grid {  
  display: grid;  
  grid-template-columns: repeat(4, 1fr);  
  gap: 1.5em;  
}  
  
.rdc-client-card {  
  background: var(--rdc-white);  
  border-radius: var(--rdc-radius);  
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);  
  transition: transform 0.2s ease, box-shadow 0.2s ease;  
}  
  
.rdc-client-card:hover {  
  transform: translateY(-3px);  
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);  
}  
  
.rdc-client-card__logo {  
  min-height: 140px;  
  padding: 1.25em;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  text-align: center;  
}  
  
.rdc-client-card__logo span {  
  font-family: var(--font-heading);  
  font-size: 0.95em;  
  font-weight: 600;  
  line-height: 1.4;  
  color: var(--rdc-blue);  
}  
  
.rdc-client-card__logo {  
  min-height: 170px;  
  padding: 1.5em;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  text-align: center;  
}  
  
.rdc-client-card__logo img {  
  max-width: 100%;  
  max-height: 110px;  
  width: auto;  
  height: auto;  
  object-fit: contain;  
}
/* ============================================================  
   OTHER SERVICES PAGE  
   ============================================================ */  
  
/* Service block wrapper */  
.rdc-service-block {  
  max-width: 1100px;  
  margin: 0 auto;  
}  
  
/* Logo + association header */  
.rdc-service-block__header {  
  display: flex;  
  align-items: center;  
  gap: 2em;  
  margin-bottom: 2.5em;  
  padding-bottom: 1.5em;  
  border-bottom: 2px solid var(--rdc-amber);  
}  
  
.rdc-service-block__logo img {  
  max-height: 70px;  
  width: auto;  
}  
  
.rdc-service-block__assoc span {  
  font-size: 0.9em;  
  font-style: italic;  
  color: var(--rdc-text-light);  
}  
  
/* Two-column body: text left, services right */  
.rdc-service-block__body {  
  display: grid;  
  grid-template-columns: 1fr 1fr;  
  gap: 3em;  
  align-items: start;  
}  
  
.rdc-service-block__text h2 {  
  font-size: 1.6em;  
  color: var(--rdc-blue);  
  margin-bottom: 0.75em;  
}  
  
.rdc-service-block__text p {  
  color: var(--rdc-text-light);  
  line-height: 1.8;  
  margin-bottom: 1em;  
}  
  
.rdc-service-block__address {  
  margin-top: 1.5em;  
  padding: 1em 1.25em;  
  background: var(--rdc-grey-bg);  
  border-left: 3px solid var(--rdc-amber);  
  border-radius: var(--rdc-radius);  
  font-size: 0.9em;  
  line-height: 1.8;  
  color: var(--rdc-text-light);  
}  
  
.rdc-service-block__services h3 {  
  font-size: 1.1em;  
  color: var(--rdc-blue);  
  margin-bottom: 1em;  
  padding-bottom: 0.4em;  
  border-bottom: 2px solid var(--rdc-amber);  
  display: inline-block;  
}  
  
/* Glazing services list */  
.rdc-service-list {  
  list-style: none;  
  padding: 0;  
  margin: 0;  
}  
  
.rdc-service-list li {  
  padding: 0.5em 0 0.5em 1.5em;  
  position: relative;  
  color: var(--rdc-text-light);  
  border-bottom: 1px solid #e8edf2;  
  font-size: 0.95em;  
}  
  
.rdc-service-list li::before {  
  content: '›';  
  position: absolute;  
  left: 0;  
  color: var(--rdc-amber);  
  font-weight: 700;  
  font-size: 1.1em;  
}  
  
/* Repair Care benefits list */  
.rdc-benefit-list {  
  list-style: none;  
  padding: 0;  
  margin: 0;  
}  
  
.rdc-benefit-list li {  
  display: flex;  
  align-items: flex-start;  
  gap: 0.75em;  
  padding: 0.6em 0;  
  border-bottom: 1px solid #e8edf2;  
  color: var(--rdc-text-light);  
  font-size: 0.95em;  
  line-height: 1.5;  
}  
  
.rdc-benefit-list__icon {  
  color: var(--rdc-amber);  
  font-weight: 700;  
  font-size: 1em;  
  flex-shrink: 0;  
  margin-top: 0.1em;  
}
/* ============================================================  
   CONTACT PAGE  
   ============================================================ */  
  
.rdc-contact-block {  
  display: grid;  
  grid-template-columns: 1fr 1fr;  
  gap: 3em;  
  align-items: start;  
}  
  
/* Contact cards */  
.rdc-contact-card {  
  display: flex;  
  align-items: flex-start;  
  gap: 1em;  
  padding: 1.25em;  
  background: var(--rdc-white);  
  border-radius: var(--rdc-radius);  
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);  
  margin-bottom: 1em;  
}  
  
.rdc-contact-card:last-child {  
  margin-bottom: 0;  
}  
  
.rdc-contact-card__icon {  
  font-size: 1.4em;  
  color: var(--rdc-amber);  
  flex-shrink: 0;  
  margin-top: 0.1em;  
  width: 1.5em;  
  text-align: center;  
}  
  
.rdc-contact-card__body h3 {  
  font-size: 0.95em;  
  font-weight: 700;  
  color: var(--rdc-blue);  
  margin-bottom: 0.3em;  
  text-transform: uppercase;  
  letter-spacing: 0.04em;  
}  
  
.rdc-contact-card__body a {  
  color: var(--rdc-text-light);  
  font-size: 1em;  
  text-decoration: none;  
  transition: color 0.2s ease;  
}  
  
.rdc-contact-card__body a:hover {  
  color: var(--rdc-amber);  
}  
  
.rdc-contact-card__body address {  
  font-style: normal;  
  color: var(--rdc-text-light);  
  line-height: 1.8;  
  font-size: 0.95em;  
}  
  
.rdc-contact-card--careers .rdc-contact-card__body p {  
  color: var(--rdc-text-light);  
  font-size: 0.95em;  
  line-height: 1.7;  
  margin: 0;  
}  
  
/* Right column: photo + map */  
.rdc-contact-block__photo {  
  width: 100%;  
  border-radius: var(--rdc-radius);  
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);  
  display: block;  
  margin-bottom: 1.5em; 
  transition: transform 0.3s ease;
}  
 .rdc-contact-block__photo:hover {  
  transform: scale(1.02);  
} 
  
/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 960px */
@media screen and (max-width: 960px) {
{  
  .rdc-clients-grid {  
    grid-template-columns: repeat(3, 1fr);  
  }
  .rdc-about {
    grid-template-columns: 1fr;
  }

  .rdc-about__image {
    order: -1;
  }

  .rdc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rdc-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rdc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rdc-footer__col--contact {
    grid-column: 1 / -1;
  }

  .rdc-contact-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .rdc-contact-cta__text p {
    max-width: 100%;
  }

  .rdc-contact-cta__buttons {
    justify-content: center;
  }
.rdc-project {  
    grid-template-columns: 1fr;  
    gap: 1.5em;  
    padding: 2em 0;  
  }  
  
  .rdc-project--reverse .rdc-project__images {  
    order: 0;  
  }  
  
  .rdc-project--reverse .rdc-project__body {  
    order: 0;  
  }  
  
  .rdc-project__images {  
    padding: 0 1em;  
  }  
  
  .rdc-project__body {  
    padding: 0 1em;  
  }
}
@media screen and (max-width: 960px) {  
  .rdc-clients-grid {  
    grid-template-columns: repeat(3, 1fr);  
  }  
}
/* =======ESPONSIVE — OTHER SERVICES========== */  
  
@media screen and (max-width: 960px) {  
  
  .rdc-service-block__body {  
    grid-template-columns: 1fr;  
    gap: 2em;  
  }  
  
  .rdc-service-block__header {  
    flex-direction: column;  
    align-items: flex-start;  
    gap: 1em;  
  }  
    .rdc-contact-block {  
    grid-template-columns: 1fr;  
    gap: 2em;  
  }  
  
  .rdc-contact-block__visual {  
    order: -1;  
  } 
}
/* Mobile — 768px */
@media screen and (max-width: 768px) {
	.rdc-service-block__text h2 {  
    font-size: 1.3em;  
  }
.rdc-clients-grid {  
    grid-template-columns: repeat(2, 1fr);  
    gap: 1em;  
  }  
  
  .rdc-client-card__logo {  
    min-height: 120px;  
    padding: 1em;  
  }  
  
  .rdc-client-card__logo span {  
    font-size: 0.85em;  
  }
  .rdc-nav__toggle {
    display: flex;
  }

  .rdc-nav__list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: #f9f9f9;
    padding: 70px 0 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .rdc-nav__list.is-open {
    display: flex;
    left: 0;
  }

  .rdc-nav__list li {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }

  .rdc-nav__list li a {
    color: #333;
    padding: 1em 1.5em;
    font-size: 1em;
  }

  .rdc-nav__list li a:hover {
    background: #eee;
    color: #111;
  }

  .rdc-hero {
    min-height: 360px;
  }

  .rdc-hero__title {
    font-size: 1.9em;
  }

  .rdc-hero__subtitle {
    font-size: 1em;
  }

  .rdc-trust__item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    white-space: normal;
  }

  .rdc-services-grid {
    grid-template-columns: 1fr;
  }

  .rdc-projects-grid {
    grid-template-columns: 1fr;
  }

  .rdc-header__contact {
    align-items: flex-start;
  }

  .rdc-footer__grid {
    grid-template-columns: 1fr;
  }

  .rdc-footer__col--contact {
    grid-column: auto;
  }
  .titletext {  
    display: none;  
  } 
 .rdc-header__inner {  
  justify-content: center;  
  align-items: center;  
}  
  
 .rdc-header__contact {  
  align-items: center;  
}
/* Responsive — page hero */

  .rdc-page-hero {
    min-height: 180px;
  }
  .rdc-page-hero__title {
    font-size: 1.7em;
  }

/* ============================================================  
   RESPONSIVE — PROJECTS  
   ============================================================ */  
   
  .rdc-project {  
    grid-template-columns: 1fr;  
    gap: 1.5em;  
    padding: 2em 0;  
  }  
  
  .rdc-project--reverse .rdc-project__images {  
    order: 0;  
  }  
  
  .rdc-project--reverse .rdc-project__body {  
    order: 0;  
  }  
  
  .rdc-project--portrait .rdc-project__images img {  
    max-width: 100%;  
  }  
  /*CONTACT*/
    .rdc-contact-card {  
    padding: 1em;  
  }
}
/* Small mobile — 480px */
@media screen and (max-width: 480px) {

  h1, .rdc-hero__title { font-size: 1.6em; }
  h2 { font-size: 1.4em; }

  .rdc-section {
    padding: 2.5em 0;
  }

  .rdc-trust__item {
    flex: 1 1 100%;
  }

.rdc-header__inner {  
  flex-direction: column;  
  align-items: center;  
}  
  
.rdc-header__contact {  
  align-items: center;  
}
  .rdc-logos__inner {
    gap: 1.5em;
  }

  .rdc-logos__inner img {
    max-height: 50px;
  }
.rdc-clients-grid {  
    grid-template-columns: 1fr;  
  }
}
/* ============================================================  
   RESPONSIVE — CONTACT  
   ============================================================ */  
  
@media screen and (max-width: 960px) {  
  
 
  
}  
  
@media screen and (max-width: 768px) {  
  
  
  
}