@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


:root {
  --brand-font: 'DM Sans', sans-serif;

  /* Branding Colours */
  --color-primary: #183A4A;        /* Text + Logo Text */
  --color-accent: #2DA9AE;         /* Chair Icon */
  --color-step-dark: #104055;      /* Stair Icon */
  --color-bg: #FCFAF7;             /* Website Background */
  --color-button: #A3E635;         /* Action Button */
  --color-button-text: #1A2E05;    /* Button Text */
  --color-border: #84CC16;         /* Border Highlight */
}

body {
  font-family: var(--brand-font);
  background-color: var(--color-bg);
  color: var(--color-primary);
line-height: 1.6;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem); /* Responsive font size */
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem); /* Responsive font size */
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.75rem, 5vw, 3rem); /* Responsive font size */
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font size */
  line-height: 1.5;
}

h5 {
  font-size: clamp(1.25rem, 3.5vw, 2rem); /* Responsive font size */
  line-height: 1.6;
}

h6 {
  font-size: clamp(1rem, 3vw, 1.5rem); /* Responsive font size */
  line-height: 1.7;
}

p {
  font-size: clamp(1rem, 4vw, 1.125rem); /* Responsive font size */
  line-height: 1.6; /* Adjust for readability */
  margin: 0;
}



.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-primary {
  background: #E11D48;
  color: white;
  border: 2px solid #BE123C;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #BE123C;
}

header {
  background: #f9fafb;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header h1 {
  font-size: 1.5rem;
  color: #1A2E05;
}

.hero {
  background: url('/Pages/sasuk/bg.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  color: var(--color-primary);
  text-align: left;
  font-family: var(--brand-font);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80vh;
}




.hero-content {
max-width: 600px;
    background: rgba(252, 250, 247, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgb(9 9 9 / 20%), 0 4px 12px rgb(0 0 0 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);}


h1 {
  font-size: clamp(2rem, 8vw, 3.5rem); /* Responsive font size */
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2; /* Adjust line-height for better readability */
}

.hero p {
  font-size: clamp(1rem, 4vw, 1.25rem); /* Responsive font size */
  margin-bottom: 2rem;
  color: var(--color-primary);
  line-height: 1.6; /* Adjust line-height for better readability */
    text-wrap-style: balance;
}


.cta-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-button);
  color: var(--color-button-text);
  padding: 1rem 2rem; /* Increased size */
  border: 2px solid var(--color-border);
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem; /* Slightly larger font */
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.cta-btn svg {
  margin-left: 0.5rem; /* Space between icon and text */
  width: 1.3rem;
  height: 1.3rem;
}

.cta-btn:hover {
  background-color: var(--color-accent); /* Hover effect */
  border-color: var(--color-accent);
  transform: translateY(-2px); /* Subtle lift effect */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* More prominent shadow */
}

.cta-btn:active {
  transform: translateY(1px); /* Click effect */
}

.site-header {
  background-color: var(--color-bg);
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(16, 64, 85, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 150px;
}

.phone-link {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link svg{max-width: 25px;
    max-height: 25px;
    margin-right: .25rem;
    fill: #25455d;}

.phone-link .phone-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.phone-link:hover {
  color: var(--color-accent);
}

.phone-link:hover .phone-icon {
  fill: var(--color-accent); /* Ensuring the icon color changes on hover */
}


.logo img {
  height: 80px;
  width: auto;
}

.site-footer {
  background-color: var(--color-step-dark);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-family: var(--brand-font);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content a {
  color: var(--color-accent);
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-links {
  margin: 1rem 0;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services{padding:60px 0;}
.services h3{text-align:Center;}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 2rem; /* Space between the grid items */
  padding: 2rem;
  justify-items: center; /* Center items in each grid column */
}

.service-item {
  background-color: rgba(252, 250, 247, 0.95);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(16, 64, 85, 0.1);
  text-align: center;
  max-width: 300px; /* Optional: limit the width of each item */
 width:100%;
}

.service-item .icon {
  width: 70px; /* Icon size */
  height: 70px;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr; /* Stack items on smaller screens */
  }
}


.stairlift-sale {
  padding:60px 0;
  background-color: #f9f9f9;
  color: var(--color-primary);
}





.intro {
  font-size: clamp(1rem, 3vw, 1.125rem);
  margin-bottom: 2rem;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.step p {
  font-size: 1rem;
}

.why-choose {
  margin-bottom: 2rem;
  text-align: left;
}

.why-choose h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.why-choose ul {
  list-style-type: none;
  padding: 0;
}

.why-choose ul li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.contact p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.tel-colour {
  color: var(--color-accent);
  text-decoration: none;
}

.bottom-section {
  background-color: var(--color-primary);
  padding: 60px 0;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(16, 64, 85, 0.2);
  color: white;
  width:1150px;
  max-width:95%;
  margin:2rem auto 3rem auto;
}

.bottom-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.bottom-section h3 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  line-height:1.2;
}

.strap {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mbg{display:none;}
@media (max-width: 768px) {
.image-container {
    position: relative;
    display: inline-block; /* Ensure the container size fits the image */
}

.image-container .mbg {
    display: block; /* Ensures the image fills the container */
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 255, 0.5); /* Blue overlay, adjust opacity as needed */
    z-index: 1; /* Overlay stays on top of the image */
}
.mbg{display:block;}
.header-container{    justify-content: center;}
.phone-link{display:none;}
  .process {
    grid-template-columns: 1fr; /* Stack items on smaller screens */
  }
.hero{        padding: 10px 0;
        background: white;
        min-height: auto;}
.hero-content{max-width:100%; background:white;        box-shadow: none;padding:1rem 0;}
.service-item{max-width:100%;}
.cta-btn{font-size:1rem;}
.bottom-section .container{padding:0;}
.bottom-section{max-width:100%;border-radius:0;padding:1.5rem;}
.bottom-section p , .bottom-section h3{    text-align: left;}
}

/* Container and Banner */
.wiz-banner {
    background-color: #F8FAFC; /* light background for contrast */
    padding: 4rem 1rem;
    font-family: var(--brand-font);
    color: #111827;
}

.wiz-banner h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

/* Form Structure */
.form-group {
    margin-bottom: 1.75rem;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
    color: #1F2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    background: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.3); /* green brand highlight */
}

/* Button */
.btn-primary {
    background-color: var(--color-primary);
    color: #1A2E05;
    border: 2px solid #84CC16;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    width: 100%;
    transition: 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #84CC16;
    color: #fff;
}

/* Radio and Checkbox Styling */
.form-check {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

/* Uploader section */
.uploader {
    padding: 1rem;
    background: #F3F4F6;
    border-radius: 0.5rem;
}

.uploader h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsive Grid Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-lg-6,
.col-lg-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom:.2rem;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-12 {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .col-lg-6,
    .col-lg-12 {
        width: 100%;
    }

    .wiz-banner h1 {
        font-size: 2rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-group label {
        font-size: 0.95rem;
    }

    .wiz-banner h1 {
        font-size: 1.75rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}
