:root {
    --primary-orange: #cc6918;
    --secondary-orange: #e67e22;
    --light-orange: #fef3e2;
    --dark-orange: #a85414;
    --: black;
    --text-secondary: #6b7280;
    --border-light: #e5e7eb;
    --bg-light: #f8fafc;
    --success-green: #059669;
    --warning-amber: #d97706;
    --danger-red: #dc2626;
     --wales-red: #d32f2f;
    --wales-green: #388e3c;
    --wales-orange: #b08a00;
     --text-dark: #1e293b;
     --border-color: #e2e8f0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-orange) 0%, #ffffff 100%);
}

.hero-title {
    color: var(--primary-orange);
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    text-decoration: none;
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--secondary-orange);
    color: var(--secondary-orange);
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--secondary-orange);
    color: white;
    text-decoration: none;
}

.text-orange {
    color: var(--primary-orange);
}

/* Section Titles */
        .section-title {
            color: var(--primary-orange);
            position: relative;
            padding-bottom: 0.75rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 4rem;
            height: 3px;
            background-color: var(--secondary-orange);
        }

/* Main Content List Styling - Only for content lists, not navigation */
        .content-section ul:not(.navbar-nav):not(.list-unstyled) {
            padding-left: 0;
            list-style: none;
        }

        .content-section ul:not(.navbar-nav):not(.list-unstyled) li {
            position: relative;
            padding: 0.8rem 0 0.8rem 2.5rem;
            margin-bottom: 0.5rem;
            background: var(--bg-light);
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .content-section ul:not(.navbar-nav):not(.list-unstyled) li:hover {
            background: #e8f4fd;
            border-left-color: var(--primary-orange);
            transform: translateX(5px);
        }

        .content-section ul:not(.navbar-nav):not(.list-unstyled) li::before {
            content: '✓';
            position: absolute;
            left: 1rem;
            top: 0.8rem;
            color: var(--primary-orange);
            font-weight: bold;
            font-size: 1.1rem;
        }

         /* Alert Box */
        .alert-custom {
            border-left: 4px solid var(--warning-amber);
            background: #fef3c7;
            border: 1px solid #f59e0b;
            color: #92400e;
            border-radius: 6px;
            padding: 20px;
        }

        .alert-custom .alert-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
/*  answer styling */
        .answer-brief {
            background: linear-gradient(135deg, var(--light-orange) 0%, rgba(254, 243, 226, 0.7) 100%);
            padding: 1.25rem 1.75rem;
            border-left: 4px solid var(--secondary-orange);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--dark-orange);
            font-size: 1.1rem;
            position: relative;
        }

        .answer-brief::before {
            content: '"';
            position: absolute;
            left: 0.5rem;
            top: -0.5rem;
            font-size: 3rem;
            color: var(--secondary-orange);
            opacity: 0.3;
        }

        .answer-detailed {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.8;
            font-size: 1rem;
        }

        .answer-detailed strong {
            color: var(--primary-orange);
            font-weight: 600;
        }

        /* Key Points */

        .key-points {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }

        .key-points h6 {
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Timeline */
        .timeline-number {
            background-color: var(--secondary-orange);
            color: white;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .timeline-content h6 {
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: var(--text-secondary);
            margin: 0;
        }

        /* Area Coverage */

         .area-coverage-section {
            background: var(--light-orange);
            padding: 3rem 2rem;
            margin: 3rem 0;
            border-radius: 12px;
            border: 1px solid rgba(204, 105, 24, 0.2);
        }

        .area-coverage-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-orange);
            text-align: center;
        }

        .area-coverage-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            text-align: center;
        }

        .area-coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .area-coverage-item {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(204, 105, 24, 0.1);
            transition: all 0.3s ease;
        }

        .area-coverage-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(204, 105, 24, 0.2);
        }

         @media (max-width: 768px) {
            .area-coverage-grid {
                grid-template-columns: 1fr;
            }
         }

        /* Highlight Card */
        .highlight-card {
            background: var(--light-orange);
            border: 1px solid var(--secondary-orange);
            border-radius: 8px;
            margin: 20px;
        }
            /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--text-dark), #0f172a);
            color: white;
            padding: 3rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
/* CTA Button */
        .cta-button {
            display: inline-block;
            background: var(--secondary-orange);
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(204, 105, 24, 0.3);
        }

        .cta-button:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(226, 108, 11, 0.4);
            text-decoration: none;
        }

        .cta-button-white {
            background: white;
            color: var(--text-dark);
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0.5rem;
        }

        .cta-button-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            color: var(--primary-orange);
            text-decoration: none;
        }
          /* Pricing Box */
        .pricing-box {
            background: var(--success-green);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
        }

        .pricing-amount {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-features {
            margin: 1.5rem 0;
        }

        .pricing-features li {
            margin: 0.5rem 0;
        }
      
        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid var(--secondary-orange);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-control {
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(204, 105, 24, 0.25);
            outline: none;
        }

        .form-control.textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary-orange);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .submit-btn:hover {
            background: var(--dark-orange);
            box-shadow: 0 4px 15px rgba(204, 105, 24, 0.3);
        }
