/* New css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6489bb;
    --secondary: #4a6fa5;
    --accent: #34a853;
    --dark: #1f2937;
    --light: #f9fafb;
    --gradient: linear-gradient(135deg, #6489bb 0%, #4a6fa5 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
    color: var(--secondary);
}

.cta-button {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}
.hero-list {
    padding-left: 0;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.light-bg {
    background: var(--light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Why Choose Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Trust Section */
.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-item::before {
    content: '✓';
    display: block;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: .5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-transparent {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-transparent:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Trustpilot Section */
.trustpilot {
    background: #222;
    color: #aaa;
    padding: 2rem;
}

.trustpilot-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trustpilot-logo {
    font-size: 1.5rem;
    color: #f9a21e;
}

.trustpilot-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.trustpilot-details span {
    color: #f9a21e;
}

.stars {
    color: #f9a21e;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .page-section.hero {
        padding: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .trustpilot-container {
        flex-direction: column;
        text-align: center;
    }

    .trustpilot-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ==============================
   PR – AREAS WE COVER (IMPROVED)
================================ */

#pr-local-expertise {
    background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%);
}

#pr-local-expertise .container {
    max-width: 1000px;
}

#pr-local-expertise ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 2.5rem auto;
    padding: 0;
}

#pr-local-expertise ul li {
    background: white;
    padding: 1.2rem 1rem;
    border-radius: 14px;
    /* font-weight: 600; */
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#pr-local-expertise ul li:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* subtle accent line */
#pr-local-expertise ul li::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    margin: 0.6rem auto 0;
    border-radius: 3px;
}

/* ==============================
   PR – LOCAL EXPERTISE
================================ */
#pr-local-expertise {
    background: white;
}

#pr-local-expertise ul {
    max-width: 900px;
    margin: 2rem auto;
    list-style: none;
}

#pr-local-expertise ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#pr-local-expertise ul li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: var(--accent);
    font-weight: bold;
}

/* ==============================
   PR – SAFETY & DISPOSAL
================================ */
#pr-safety {
    background: linear-gradient(135deg, #6489bb 0%, #4a6fa5 100%);
    color: white;
}

#pr-safety h2 {
    color: white;
}

#pr-safety p {
    color: rgba(255, 255, 255, 0.95);
}

#pr-safety .container {
    max-width: 900px;
}

#pr-safety p:last-child {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

/* ==============================
   PR – WHY CHOOSE US
================================ */

#pr-why-choose {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

/* card look for each column */
#pr-why-choose .col-md-3 {
    background: white;
    padding: 2.2rem 1.8rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    margin-bottom: 2rem;
}

/* hover effect */
#pr-why-choose .col-md-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* headings */
#pr-why-choose h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* subtle icon dot */
#pr-why-choose .col-md-3::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 1rem;
}

#pr-why-choose .row:last-child {
    margin-top: 3rem;
}

#pr-why-choose .row:last-child p {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(100, 137, 187, 0.08);
    padding: 1.8rem;
    border-radius: 16px;
}

/* ==============================
   PR – PROPERTY TYPES WE SERVE
================================ */

#pr-property-types {
    background: linear-gradient(180deg, #f5f5f5 0%, #eef2f7 100%);
}

#pr-property-types ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem auto;
    padding: 0;
    max-width: 1000px;
}

#pr-property-types ul li {
    background: white;
    padding: 1.6rem 1.4rem;
    border-radius: 18px;
    /* font-weight: 600; */
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

/* tick icon */
#pr-property-types ul li::before {
    content: "✓";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 15px;
    height: 15px;
    background: var(--gradient);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hover effect */
#pr-property-types ul li:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* bottom reassurance text */
#pr-property-types p:last-child {
    max-width: 900px;
    margin: 2.5rem auto 0;
    background: rgba(100, 137, 187, 0.08);
    padding: 1.6rem;
    border-radius: 16px;
}

/* ==============================
   PR – PROCESS STEPS
================================ */

#pr-process {
    background: white;
}

#pr-process ol {
    counter-reset: step;
    padding-left: 0;
}

#pr-process ol li {
    list-style: none;
    position: relative;
    padding: 1.4rem 1.4rem 1.4rem 4.5rem;
    margin-bottom: 1.5rem;
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* number badge */
#pr-process ol li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hover effect */
#pr-process ol li:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

/* call box spacing */
#pr-process .quick-contact {
    margin-top: 3rem;
}

/* ==============================
   PR – UK ASBESTOS REGULATIONS
================================ */

#pr-regulations {
    background: linear-gradient(135deg, #6489bb 0%, #4a6fa5 100%);
}

#pr-regulations .card-1 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

#pr-regulations h2 {
    color: white;
}

#pr-regulations p,
#pr-regulations li {
    color: rgba(255, 255, 255, 0.95);
}

#pr-regulations ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

#pr-regulations ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

#pr-regulations ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ==============================
   PR – ASBESTOS SERVICES LIST
================================ */

#pr-services-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#pr-services-list ul li {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

#pr-services-list ul li:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
}

#pr-services-list h4 a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

#pr-services-list h4 a:hover {
    text-decoration: underline;
}

#pr-services-list p {
    margin-top: 0.8rem;
    font-size: 14px;
}

/* ==============================
   PR – SERVICE SELECTION GUIDE
================================ */

#pr-service-guide {
    background: linear-gradient(180deg, #4a6fa5 0%, #6489bb 100%);
}

#pr-service-guide .question {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.8rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

#pr-service-guide h3 {
    color: white;
    margin-bottom: 2rem;
}

#pr-service-guide p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

#pr-service-guide strong {
    color: white;
}

.regulations-subtitle {
    margin-top: 2rem;
    font-weight: 700;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-item p {
    font-size: 14px;
}

.service-question {
    margin-bottom: 1.4rem;
}

/* ==============================
   PR – WHY ASBESTOS HANDLING
================================ */

#pr-why-asbestos {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

#pr-why-asbestos .why-asbestos-cards {
    margin-top: 3rem;
}

#pr-why-asbestos .why-asbestos-card {
    padding: 2.4rem 2.2rem;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    height: 100%;
}

/* subtle hover */
#pr-why-asbestos .why-asbestos-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

/* visual divider dot */
#pr-why-asbestos .why-asbestos-card::before {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
    margin: 0 auto 1.2rem;
}

@media (max-width: 768px) {

    #pr-local-expertise ul {
        grid-template-columns: 1fr;
    }

    #pr-local-expertise ul li {
        font-size: 1rem;
        padding: 1rem;
    }

    #pr-local-expertise ul li {
        font-size: 1rem;
    }

    #pr-safety {
        padding: 4rem 1.5rem;
    }

    #pr-why-choose .col-md-3 {
        padding: 1.8rem 1.4rem;
    }

    #pr-why-choose .col-md-3::before {
        margin-bottom: 0.8rem;
    }

    #pr-property-types ul {
        grid-template-columns: 1fr;
    }

    #pr-process ol li {
        padding: 1.2rem 1.2rem 1.2rem 4rem;
        font-size: 1rem;
    }

    #pr-regulations .card-1,
    #pr-service-guide .question {
        padding: 2rem 1.6rem;
    }

    #pr-services-list ul {
        grid-template-columns: 1fr;
    }

    #pr-service-guide p {
        font-size: 1rem;
    }

    #pr-why-asbestos .why-asbestos-card {
        margin-bottom: 1.8rem;
        padding: 2rem 1.6rem;
    }
}
/* Section base */
.roof-survey-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Content section */
.roof-survey-content {
  margin-top: 50px;
}

.roof-survey-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

/* Highlight paragraph */
.roof-survey-highlight {
  font-weight: 600;
  font-size: 17px;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .roof-survey-section {
    padding: 40px 0;
  }

  .roof-survey-content {
    margin-top: 35px;
  }
}
