/* Start custom CSS for html, class: .elementor-element-3355282 *//* =========================================
   NOTTINGHAM LOCATION PAGE
   Unique Prefix: nottingham-
   ========================================= */

.nottingham-page {
  --nt-primary: #5D3140;
  --nt-secondary: #CF4173;
  --nt-pink: #F39399;
  --nt-light: #F6D8BD;
  --nt-white: #ffffff;
  --nt-dark: #291a21;
  --nt-text: #604b53;
  --nt-border: rgba(93, 49, 64, 0.12);

  width: 100%;
  overflow: hidden;
  background: #fffaf8;
  color: var(--nt-text);
  font-family: Arial, Helvetica, sans-serif;
}

.nottingham-page *,
.nottingham-page *::before,
.nottingham-page *::after {
  box-sizing: border-box;
}

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

.nottingham-page h1,
.nottingham-page h2,
.nottingham-page h3,
.nottingham-page p {
  margin-top: 0;
}

.nottingham-page h1,
.nottingham-page h2,
.nottingham-page h3 {
  color: var(--nt-primary);
}

.nottingham-section-tag,
.nottingham-eyebrow {
  display: inline-block;
  color: var(--nt-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}


/* =========================================
   HERO
   ========================================= */

.nottingham-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(207, 65, 115, 0.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #F6D8BD 0%,
      #fff9f6 52%,
      #F39399 160%
    );
}

.nottingham-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -190px;
  bottom: -180px;
  border: 1px solid rgba(93, 49, 64, 0.10);
  border-radius: 50%;
}

.nottingham-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  bottom: -190px;
  border: 1px solid rgba(93, 49, 64, 0.12);
  border-radius: 50%;
}

.nottingham-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(246, 216, 189, 0.94),
      rgba(246, 216, 189, 0.32),
      rgba(243, 147, 153, 0.12)
    );
}

.nottingham-hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.nottingham-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.nottingham-hero p {
  max-width: 730px;
  font-size: 18px;
  line-height: 1.8;
  color: #59454d;
  margin-bottom: 35px;
}

.nottingham-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nottingham-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 29px;
  border-radius: 50px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nottingham-btn-primary {
  background: var(--nt-primary);
  color: #fff !important;
}

.nottingham-btn-primary:hover {
  background: var(--nt-secondary);
  color: #fff !important;
  transform: translateY(-3px);
}

.nottingham-btn-outline {
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--nt-primary);
  color: var(--nt-primary) !important;
}

.nottingham-btn-outline:hover {
  background: var(--nt-primary);
  color: #fff !important;
  transform: translateY(-3px);
}


/* =========================================
   INTRO
   ========================================= */

.nottingham-intro {
  padding: 100px 0;
  background: #fff;
}

.nottingham-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.nottingham-intro-text h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  margin-bottom: 25px;
}

.nottingham-intro-text p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.nottingham-intro-card {
  position: relative;
  overflow: hidden;
  padding: 45px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    var(--nt-primary),
    #7a4055
  );
  color: #fff;
  box-shadow: 0 25px 60px rgba(93,49,64,0.18);
}

.nottingham-intro-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -95px;
  top: -95px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.nottingham-card-symbol {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--nt-pink);
  color: var(--nt-primary);
  font-size: 25px;
}

.nottingham-card-label {
  display: block;
  margin-bottom: 12px;
  color: var(--nt-pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nottingham-intro-card h3 {
  color: #fff;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.nottingham-intro-card > p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.nottingham-check-list {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.nottingham-check-list div {
  color: #fff;
  font-size: 13px;
}


/* =========================================
   SERVICES
   ========================================= */

.nottingham-services {
  padding: 100px 0;
  background: var(--nt-light);
}

.nottingham-section-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.nottingham-section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.nottingham-section-heading p {
  font-size: 16px;
  line-height: 1.8;
}

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

.nottingham-service-card {
  position: relative;
  overflow: hidden;
  min-height: 295px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(93,49,64,0.08);
  border-radius: 24px;
  transition: all 0.35s ease;
}

.nottingham-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--nt-primary),
    var(--nt-secondary),
    var(--nt-pink)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nottingham-service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 45px rgba(93,49,64,0.14);
}

.nottingham-service-card:hover::before {
  transform: scaleX(1);
}

.nottingham-service-no {
  display: block;
  color: var(--nt-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.nottingham-service-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: #fff0f1;
  color: var(--nt-secondary);
  font-size: 18px;
}

.nottingham-service-card h3 {
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.nottingham-service-card p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0;
}


/* =========================================
   SPECIALIST
   ========================================= */

.nottingham-specialist {
  padding: 105px 0;
  background: #fff;
}

.nottingham-specialist-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: center;
}

.nottingham-specialist-image {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 35px;
  background:
    radial-gradient(
      circle at center,
      rgba(243,147,153,0.55),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #F6D8BD,
      #F39399
    );
  position: relative;
  overflow: hidden;
}

.nottingham-specialist-image::before,
.nottingham-specialist-image::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(93,49,64,0.15);
  border-radius: 50%;
}

.nottingham-specialist-image::before {
  width: 330px;
  height: 330px;
}

.nottingham-specialist-image::after {
  width: 230px;
  height: 230px;
}

.nottingham-image-shape {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nt-primary);
  color: #fff;
  text-align: center;
  box-shadow: 0 25px 50px rgba(93,49,64,0.25);
}

.nottingham-image-shape span {
  color: var(--nt-pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.nottingham-image-shape strong {
  margin: 8px 0;
  font-size: 22px;
  line-height: 1.1;
}

.nottingham-image-shape small {
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 2px;
}

.nottingham-specialist-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.nottingham-specialist-content p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.nottingham-feature-list {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.nottingham-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nt-primary);
  font-weight: 700;
}

.nottingham-feature-list li span {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nt-pink);
  color: var(--nt-primary);
  font-size: 12px;
}


/* =========================================
   WHY US
   ========================================= */

.nottingham-why {
  padding: 105px 0;
  background: #fff8f6;
}

.nottingham-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nottingham-why-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--nt-border);
  border-radius: 23px;
  transition: 0.3s ease;
}

.nottingham-why-card:hover {
  transform: translateY(-5px);
  border-color: var(--nt-pink);
  box-shadow: 0 15px 35px rgba(93,49,64,0.08);
}

.nottingham-why-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--nt-secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nottingham-why-card h3 {
  font-size: 20px;
  margin-bottom: 11px;
}

.nottingham-why-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================
   SEO CONTENT
   ========================================= */

.nottingham-seo {
  padding: 105px 0;
  background: linear-gradient(
    135deg,
    #5D3140,
    #74384f
  );
  color: #fff;
}

.nottingham-seo-content {
  max-width: 900px;
  margin: auto;
}

.nottingham-seo .nottingham-section-tag {
  color: var(--nt-pink);
}

.nottingham-seo h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 30px;
}

.nottingham-seo p {
  color: rgba(255,255,255,0.83);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.nottingham-seo strong {
  color: var(--nt-pink);
}


/* =========================================
   PROCESS
   ========================================= */

.nottingham-process {
  padding: 100px 0;
  background: #fff;
}

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

.nottingham-process-card {
  padding: 35px;
  background: var(--nt-light);
  border-radius: 25px;
  transition: 0.3s ease;
}

.nottingham-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(93,49,64,0.12);
}

.nottingham-process-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 14px;
  background: var(--nt-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.nottingham-process-card h3 {
  font-size: 21px;
  margin-bottom: 13px;
}

.nottingham-process-card p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0;
}


/* =========================================
   FAQ
   ========================================= */

.nottingham-faq {
  padding: 100px 0;
  background: #fff8f6;
}

.nottingham-faq-list {
  max-width: 900px;
  margin: auto;
}

.nottingham-faq details {
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--nt-border);
  border-radius: 15px;
}

.nottingham-faq summary {
  position: relative;
  cursor: pointer;
  padding: 22px 50px 22px 25px;
  color: var(--nt-primary);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.nottingham-faq summary::-webkit-details-marker {
  display: none;
}

.nottingham-faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 16px;
  color: var(--nt-secondary);
  font-size: 25px;
}

.nottingham-faq details[open] summary::after {
  content: "−";
}

.nottingham-faq details p {
  padding: 0 25px 23px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================
   CTA
   ========================================= */

.nottingham-cta {
  padding: 80px 0 100px;
  background: #fff8f6;
}

.nottingham-cta-box {
  padding: 75px 35px;
  text-align: center;
  border-radius: 35px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(243,147,153,0.25),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--nt-primary),
      #7a4055
    );
  box-shadow: 0 25px 60px rgba(93,49,64,0.18);
}

.nottingham-cta-box .nottingham-section-tag {
  color: var(--nt-pink);
}

.nottingham-cta-box h2 {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.nottingham-cta-box p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.nottingham-btn-light {
  background: var(--nt-light);
  color: var(--nt-primary) !important;
}

.nottingham-btn-light:hover {
  background: var(--nt-pink);
  color: var(--nt-primary) !important;
  transform: translateY(-3px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .nottingham-intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .nottingham-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nottingham-specialist-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nottingham-why-grid {
    grid-template-columns: 1fr;
  }

  .nottingham-process-grid {
    grid-template-columns: 1fr;
  }

  .nottingham-hero {
    min-height: 500px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .nottingham-container {
    width: 90%;
  }

  .nottingham-hero-content {
    padding: 75px 0;
  }

  .nottingham-hero h1 {
    font-size: 39px;
    letter-spacing: -1px;
  }

  .nottingham-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .nottingham-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nottingham-btn {
    width: 100%;
  }

  .nottingham-intro,
  .nottingham-services,
  .nottingham-specialist,
  .nottingham-why,
  .nottingham-seo,
  .nottingham-process,
  .nottingham-faq {
    padding: 75px 0;
  }

  .nottingham-intro-text h2,
  .nottingham-section-heading h2,
  .nottingham-specialist-content h2,
  .nottingham-seo h2 {
    font-size: 32px;
  }

  .nottingham-intro-card {
    padding: 30px;
  }

  .nottingham-service-grid {
    grid-template-columns: 1fr;
  }

  .nottingham-service-card {
    min-height: auto;
    padding: 30px;
  }

  .nottingham-specialist-image {
    min-height: 360px;
  }

  .nottingham-specialist-image::before {
    width: 270px;
    height: 270px;
  }

  .nottingham-specialist-image::after {
    width: 190px;
    height: 190px;
  }

  .nottingham-image-shape {
    width: 175px;
    height: 175px;
  }

  .nottingham-image-shape strong {
    font-size: 18px;
  }

  .nottingham-why-card {
    padding: 26px;
  }

  .nottingham-cta {
    padding: 55px 0 75px;
  }

  .nottingham-cta-box {
    padding: 55px 22px;
    border-radius: 25px;
  }

  .nottingham-faq summary {
    padding: 19px 45px 19px 20px;
    font-size: 15px;
  }

  .nottingham-faq details p {
    padding: 0 20px 20px;
  }
}/* End custom CSS */