        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
            color: #1a1a1a;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-bottom: 3px solid #dc143c;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #1a1a1a;
            margin: 3px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }

        .logo svg {
            height: 50px;
            width: auto;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .logo-text {
            color: #1a1a1a;
        }

        .logo-text .red {
            color: #dc143c;
        }

        .logo-slogan {
            font-size: 0.85rem;
            color: #666;
            font-weight: 400;
            font-style: italic;
            letter-spacing: 0.5px;
            margin-top: -0.2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #dc143c;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23333" width="1200" height="600"/><path fill="%23444" d="M0 300L50 325L100 300L150 325L200 300L250 325L300 300L350 325L400 300L450 325L500 300L550 325L600 300L650 325L700 300L750 325L800 300L850 325L900 300L950 325L1000 300L1050 325L1100 300L1150 325L1200 300V600H0Z"/></svg>');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content .highlight {
            color: #dc143c;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            background: #dc143c;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid #dc143c;
        }

        .cta-button:hover {
            background: transparent;
            border-color: #dc143c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
        }

        /* Hero Carousel Section */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
            margin-top: 70px;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Hero content overlay */
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            width: 90%;
            max-width: 1200px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
        }

        .hero-content .highlight {
            color: #dc143c;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.6);
        }

        .cta-button {
            background: #dc143c;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid #dc143c;
            text-shadow: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }

        .cta-button:hover {
            background: #b01030;
            border-color: #b01030;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(220, 20, 60, 0.8);
            color: white;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(220, 20, 60, 1);
        }

        .carousel-prev {
            left: 1rem;
        }

        .carousel-next {
            right: 1rem;
        }

        .carousel-dots {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .carousel-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .carousel-dot.active {
            background: #dc143c;
            transform: scale(1.3);
            border-color: white;
        }

        /* Portfolio Carousel Section */
        .portfolio-carousel {
            padding: 5rem 2rem;
            background: white;
            overflow: hidden;
        }

        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .carousel-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* USP Section */
        .usp-section {
            padding: 4rem 2rem 2rem 2rem;
            background: white;
            border-bottom: 3px solid #f8f8f8;
        }

        .usp-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .usp-card {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
            border-radius: 10px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .usp-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px
            );
            pointer-events: none;
        }

        .usp-card::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .usp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
            background: linear-gradient(135deg, #b01030 0%, #dc143c 100%);
        }

        .usp-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .usp-card h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .usp-card p {
            color: white;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services {
            padding: 3rem 2rem 5rem 2rem;
            background: #f8f8f8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .section-title span {
            color: #dc143c;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: none;
            transition: all 0.3s;
            border: 3px solid #dc143c;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
        }

        .service-card h3 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
        }

        .service-icon {
            font-size: 3rem;
            color: #dc143c;
            margin-bottom: 1rem;
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: white;
        }

        /* Reviews Section */
        .reviews {
            padding: 5rem 2rem;
            background: #f8f8f8;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .checkatrade-badge {
            display: inline-block;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
            transition: transform 0.3s;
        }

        .checkatrade-badge:hover {
            transform: translateY(-5px);
        }

        .checkatrade-link {
            color: #dc143c;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-name {
            font-weight: bold;
            color: #1a1a1a;
        }

        .review-date {
            color: #666;
            font-size: 0.9rem;
        }

        .star-rating {
            color: #ffa500;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review-text {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .review-service {
            color: #dc143c;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .view-all-reviews {
            text-align: center;
            margin-top: 3rem;
        }

        .view-all-btn {
            background: #dc143c;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
        }

        .view-all-btn:hover {
            background: #b01030;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #555;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
            color: #1a1a1a;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-info h2 {
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .contact-info p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #555;
        }

        .contact-info .location {
            color: white;
            font-weight: bold;
            background: #dc143c;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 3px solid #dc143c;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background: #f8f8f8;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea {
            outline: none;
            border-color: #dc143c;
            background: white;
            box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-button {
            background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
        }

        .submit-button:hover {
            background: linear-gradient(135deg, #b01030 0%, #dc143c 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 5px;
            display: none;
        }

        .form-message.success {
            background: #28a745;
            color: white;
        }

        .form-message.error {
            background: #dc3545;
            color: white;
        }

        /* Footer */
        footer {
            background: #8B0000;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo {
                font-size: 1.4rem;
            }

            .logo svg {
                height: 40px;
            }

            .logo-slogan {
                font-size: 0.7rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .nav-links a {
                font-size: 1.2rem;
            }

            .usp-grid {
                grid-template-columns: 1fr;
            }

            .usp-card {
                padding: 1.5rem;
            }

            .usp-icon {
                font-size: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .carousel-nav {
                padding: 0.5rem;
                font-size: 1.2rem;
            }

            .carousel-prev {
                left: 0.5rem;
            }

            .carousel-next {
                right: 0.5rem;
            }

            .carousel-dots {
                bottom: 1rem;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }
        }

/* Page Section for internal pages */
.page-section {
    margin-top: 70px;
    min-height: 60vh;
}

/* ========================================
   CORPORATE HOME PAGE STYLES
======================================== */

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #dc143c;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #dc143c;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.cta-button.primary:hover {
    background: #b01030;
    border-color: #b01030;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.cta-button.secondary {
    background: #dc143c;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #dc143c;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.cta-button.secondary:hover {
    background: #b01030;
    border-color: #b01030;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.trust-icon {
    font-size: 2.5rem;
    color: #dc143c;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.trust-text span {
    color: #666;
    font-size: 0.85rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid #dc143c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
    border-color: #b01030;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    pointer-events: none;
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary-large {
    background: white;
    color: #dc143c;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.primary-large:hover {
    background: #f8f8f8;
    color: #dc143c;
    border-color: #f8f8f8;
    transform: translateY(-3px);
}

.cta-button.secondary-large {
    background: white;
    color: #dc143c;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.secondary-large:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-3px);
}

/* Services Overview */
.services-overview {
    padding: 5rem 2rem;
    background: white;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #dc143c;
    transition: all 0.3s;
    position: relative;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #f0f0f0;
}

.service-overview-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-overview-card p {
    color: #666;
    margin-bottom: 1rem;
}

.learn-more {
    color: #dc143c;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.learn-more:hover {
    color: #b01030;
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 30px;
    height: 30px;
    background: #dc143c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.why-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-item p {
    color: #666;
    line-height: 1.6;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #dc143c;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   PAGE-SPECIFIC STYLES
======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
    padding: 8rem 2rem 5rem 2rem;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: white;
}

.page-hero p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    color: #666;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

/* About Story Section */
.about-story {
    padding: 5rem 2rem;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h2 span {
    color: #dc143c;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item-large {
    background: white;
    border: 3px solid #dc143c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.stat-item-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: bold;
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    color: #666;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #dc143c;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    background: white;
}

.checkatrade-banner {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.checkatrade-link-large {
    display: inline-block;
    background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.checkatrade-link-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.review-card {
    background: white;
    border: 3px solid #dc143c;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.star-rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 1rem;
}

.reviewer-name {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.review-service {
    color: #dc143c;
    font-size: 0.9rem;
}

.view-all-reviews {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Page Layout */
.contact-page-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-box h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-box > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-benefits {
    margin: 2rem 0;
}

.contact-benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-check {
    width: 30px;
    height: 30px;
    background: #dc143c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-benefit-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.contact-benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-methods {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-methods h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    font-size: 1.5rem;
}

.contact-method strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: #666;
    margin: 0;
}

.contact-method a {
    color: #dc143c;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form-box {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #dc143c;
}

.contact-form-box h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.contact-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f8f8;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form select:focus {
    outline: none;
    border-color: #dc143c;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #dc143c;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #dc143c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.process-card h3 {
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
}

.process-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive for Page Sections */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 2rem 4rem 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-box {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
