/* Asset Security Group - Main Stylesheet */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3b82f6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1e3a8a;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: #1f2937;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top contact bar info */
.top-contact-bar .contact-info {
    display: flex;
    gap: 2rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3b82f6;
}

.contact-label {
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.employee-login-link {
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid #374151;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.employee-login-link:hover {
    background-color: #374151;
    color: white;
}

/* Main Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: block;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-shield {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-main {
    font-size: 50px;
    font-weight: 900;
    color: #1e293b;
    line-height: 0.85;
    letter-spacing: -0.04em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1f2937;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #1e3a8a;
}

.dropdown-header {
    font-weight: 600;
    color: #6b7280;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Floating Contact Elements */
.floating-contact {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn,
.floating-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.floating-phone {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.floating-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
}

.floating-btn svg,
.floating-phone svg {
    width: 20px;
    height: 20px;
}

.floating-btn span,
.floating-phone span {
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
    padding-left: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Override container centering for hero section */
.hero-section .container {
    margin: 0;
    margin-left: 30%;
    max-width: none;
    width: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    color: white;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    padding-top: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: none;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.7rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.btn-hero {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(0);
    transition: all 0.3s ease;
    text-shadow: none;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}



/* Hero Responsive Design */
@media (max-width: 1440px) {
    .hero-section .container {
        margin-left: 25%;
    }
}

@media (max-width: 1024px) {
    .hero-section .container {
        margin-left: 20%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 500px;
        padding-top: 0;
        align-items: center;
    }

    .hero-section .container {
        margin: 0 1rem;
        margin-left: 1rem;
    }

    .hero-content {
        text-align: left;
        align-items: flex-start;
        max-width: 100%;
        padding: 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        align-items: center;
    }

    /* Contact Section Responsive - 2 column layout for tablets */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* UK Coverage Responsive */
    .cities-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-list {
        grid-template-columns: 1fr;
    }

    .coverage-title {
        font-size: 1.3rem;
    }

    .uk-coverage-info {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    /* Contact Section Responsive - single column for mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 450px;
        padding-top: 0;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.75rem 1rem;
    }
}

/* Key Features Section */
.key-features-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

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

.feature-item {
    background: white;
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #1e3a8a;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

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

.about-text {
    max-width: 600px;
}

.services-list {
    list-style: none;
    margin: 1.5rem 0;
}

.services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
}



.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Accreditations Section */
.accreditations-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

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

.accreditation-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.accreditation-item:hover img {
    filter: grayscale(0%);
}

/* UK Coverage Section */
.uk-coverage-section {
    padding: 4rem 0;
}

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

.coverage-map img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

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

.review-platform img {
    max-width: 150px;
    height: auto;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-phone-label {
    font-size: 1rem;
    color: #e5e7eb;
}

.cta-phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.testimonials-section .section-description {
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 0;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}



.author-industry {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }

    .service-item {
        min-height: auto;
    }
}

.service-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.service-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-description {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-benefits {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
    flex-grow: 1;
}

/* Perfect button alignment for service items */
.service-item .btn {
    margin-top: auto;
}

/* Service Add-ons Section */
.service-addons-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.addon-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.addon-item:hover {
    transform: translateY(-5px);
}

.addon-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.addon-content {
    padding: 1.5rem;
    text-align: center;
}

.addon-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Price Promise Section */
.price-promise-section {
    padding: 3rem 0;
    background-color: #fef3c7;
}

.price-promise-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.price-promise-icon img {
    width: 80px;
    height: 80px;
}

.price-promise-text h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price-promise-text p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Sectors Section */
.sectors-section {
    padding: 4rem 0;
}

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

.sector-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-5px);
}

.sector-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sector-content {
    padding: 1.5rem;
    text-align: center;
}

.sector-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Careers Section */
.careers-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.careers-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Client Logos Section */
.client-logos-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

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

.client-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Case Studies Section */
.case-studies-section {
    padding: 4rem 0;
}

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

.case-study-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
}

.case-study-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
    text-align: center;
}

.case-study-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.125rem;
    line-height: 1.4;
}

.news-meta {
    margin-bottom: 1rem;
}

.news-date {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Contact Section - Main Site Styling */
.contact-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
}

.contact-phone {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Removed conflicting dark UK coverage styling */

/* Coverage Buttons */
.coverage-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-buttons .btn-primary,
.coverage-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coverage-buttons .btn-primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
}

.coverage-buttons .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.coverage-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coverage-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 0.85rem;
    color: #374151;
    transition: all 0.2s ease;
}

.city-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.city-bullet {
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-details .icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.stats-list .stat {
    color: #60a5fa;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Section 2: UK Coverage (Middle - Full Width) */
.uk-coverage-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

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

.uk-coverage-section .coverage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.uk-coverage-section .coverage-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.uk-coverage-section .coverage-cities {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.uk-coverage-section .coverage-cities h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Contact Info Section - Two Column Layout */
.contact-info-section {
    background: #ffffff;
    padding: 3rem 0;
}

.contact-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-column,
.statistics-column {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.contact-info-column h4,
.statistics-column h4 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-emoji {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.contact-detail-item strong {
    color: #1f2937;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-item a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 8px;
    border: 1px solid #e0f2fe;
}

.stat-icon {
    color: #10b981;
    font-size: 1rem;
    font-weight: bold;
}

.stat-item span:last-child {
    color: #374151;
    font-weight: 500;
}

/* Contact Info Boxes - Proper Sizing */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-box,
.key-statistics-box {
    background: white;
    padding: 1.5rem;  /* SMALLER than current */
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Same styling as main site cards */
}

.contact-info-box h3,
.key-statistics-box h3 {
    font-size: 1.125rem;  /* SMALLER than current */
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-item-small {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;  /* TIGHTER spacing */
    font-size: 0.9rem;  /* SMALLER text */
}

.contact-item-small .icon {
    font-size: 1rem;  /* SMALLER icons */
    margin-right: 0.75rem;
}

.stat-item-small {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;  /* TIGHTER spacing */
    font-size: 0.9rem;  /* SMALLER text */
}

.stat-item-small .stat-icon {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.875rem;  /* SMALLER icons */
}

/* UK Coverage Section - Remove conflicting dark background */

.cities-list-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 0.375rem 0.75rem;  /* SMALLER tags */
    border-radius: 6px;
    font-size: 0.8rem;  /* SMALLER text */
}

/* Statistics Grid Styling */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Certifications Styling */
.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 500;
}

/* Contact section specific styling */
.contact-section .contact-info h2 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-section .contact-info p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Contact Details List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.contact-detail-item strong {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-item a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.contact-detail-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-detail-item div {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.contact-icon {
    width: 36px; /* Reduced from 48px */
    height: 36px; /* Reduced from 48px */
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px; /* Reduced from 24px */
    height: 18px; /* Reduced from 24px */
    color: white;
}

.contact-text h3 {
    color: #1e40af;
    font-size: 0.85rem; /* Reduced from 1rem */
    font-weight: 600;
    margin: 0 0 0.15rem 0; /* Reduced margin */
    line-height: 1.2; /* Reduced line height */
}

.contact-text p {
    color: #4b5563;
    margin: 0;
    line-height: 1.3; /* Reduced from 1.4 */
    font-size: 0.85rem; /* Added smaller font size */
}

.contact-text a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.quote-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1f2937;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.phone-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-notice {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* UK Coverage Info */
.uk-coverage-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.coverage-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #60a5fa;
}

.coverage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coverage-subtitle {
    color: #475569;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.coverage-cities,
.coverage-stats,
.coverage-contact {
    margin-bottom: 2rem;
}

.coverage-cities h3,
.coverage-stats h3,
.coverage-contact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    border-left: 4px solid #60a5fa;
    padding-left: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 0.875rem;
    color: #1f2937;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.city-bullet {
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.uk-coverage-info .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 0.9rem;
}

.uk-coverage-info .stat-icon {
    font-size: 1rem;
    color: #10b981;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-quick-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 0.85rem;
}

.contact-emoji {
    font-size: 0.9rem; /* Reduced from 1rem */
    flex-shrink: 0;
    line-height: 1;
    width: 24px; /* Fixed width for alignment */
    text-align: center;
}

/* Contact detail text styling for height matching */
.contact-detail-item strong {
    font-size: 0.8rem; /* Smaller label text */
    color: #1e40af;
    font-weight: 600;
    line-height: 1.2;
}

.contact-detail-item a,
.contact-detail-item div {
    font-size: 0.8rem; /* Smaller contact details */
    line-height: 1.2;
}

.contact-detail-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.quick-contact-item strong {
    color: #1e3a8a;
    font-size: 0.8rem;
    font-weight: 600;
}

.quick-contact-item a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quick-contact-item a:hover {
    color: #60a5fa;
}

/* Footer - Main Site Styling */
.main-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    /* Individual footer section styling */
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-about {
    max-width: none;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.logo-sub {
    font-size: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.1em;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-credentials {
    display: flex;
    gap: 1rem;
}

.credential {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: #3b82f6;
}

.footer-address {
    margin-top: 1rem;
}

.footer-address p {
    color: #d1d5db;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-address strong {
    color: white;
}

.footer-hours {
    margin-top: 1rem;
}

.footer-hours p {
    color: #d1d5db;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-hours strong {
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-contact .contact-item {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.office-hours {
    margin-top: 1rem;
}

.office-hours h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.office-hours p {
    color: #9ca3af;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    color: #d1d5db;
    font-size: 0.875rem;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #d1d5db;
}

/* Footer SEO Links */
.footer-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-seo-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.footer-seo-links a:hover {
    color: #9ca3af;
}

.footer-coverage {
    margin: 1rem 0;
    line-height: 1.5;
}

.footer-coverage strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

/* UK Coverage Section Styles */
.uk-coverage-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.coverage-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.coverage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coverage-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.coverage-cities,
.coverage-stats,
.coverage-contact {
    margin-bottom: 2rem;
}

.coverage-cities:last-child,
.coverage-stats:last-child,
.coverage-contact:last-child {
    margin-bottom: 0;
}

.coverage-cities h4,
.coverage-stats h4,
.coverage-contact h4 {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    font-size: 0.85rem;
    color: #374151;
    transition: all 0.2s ease;
}

.city-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.city-bullet {
    color: #3b82f6;
    font-weight: bold;
    font-size: 1rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    font-size: 0.85rem;
    color: #374151;
    transition: all 0.2s ease;
}

.stat-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.stat-icon {
    font-size: 0.9rem;
    color: #10b981;
}

.contact-quick-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.2s ease;
}

.quick-contact-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}



.quick-contact-item div {
    flex: 1;
}

.quick-contact-item strong {
    color: #1e40af;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.25rem;
}

.quick-contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
}

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

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Internal Links */
.internal-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.internal-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Critical above-fold optimizations */
.hero-section {
    contain: layout style paint;
    will-change: transform;
}

.main-header {
    contain: layout style;
}

/* Reduce layout shifts */
.service-icon,
.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

/* Optimize animations */
.btn,
.service-item,
.testimonial-item,
.faq-item {
    will-change: transform;
}

/* Preload critical resources */
.hero-background-image {
    object-fit: cover;
    object-position: center;
}

/* Responsive styles for UK Coverage */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-quick-list {
        grid-template-columns: 1fr;
    }

    .coverage-title {
        font-size: 1.25rem;
    }

    .uk-coverage-wrapper {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* ===================================
   TEMPORARY CCTV PAGE STYLES
   =================================== */

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: white;
}

/* Applications Grid - 2x3 Layout */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.application-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.application-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.application-card:hover .application-icon {
    transform: scale(1.1);
}

.application-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.application-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.application-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.application-description {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.application-benefits {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
    flex-grow: 1;
}

/* Specifications Section - Brand Colors */
.specifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.specifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.spec-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-spec {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6); /* NAVY TO BLUE GRADIENT */
    color: white;
    border: 2px solid #1e3a8a;
}

.standard-spec {
    background: #f8fafc; /* LIGHT GRAY */
    color: #374151;
    border: 2px solid #e5e7eb;
}

.spec-header {
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.premium-spec .spec-header {
    background: rgba(255, 255, 255, 0.1);
}

.standard-spec .spec-header {
    background: #e5e7eb;
    color: #374151;
}

.spec-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spec-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.spec-content {
    padding: 2rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.standard-spec .spec-item {
    background: rgba(0, 0, 0, 0.02);
}

.spec-icon {
    color: #60a5fa; /* LIGHT BLUE */
    margin-right: 0.75rem;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.spec-icon-negative {
    color: #f87171; /* LIGHT RED */
    margin-right: 0.75rem;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.spec-text {
    flex: 1;
}

.spec-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.spec-text span {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.story-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-rating {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.story-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-content p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-grow: 1;
}

.story-attribution {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.author-info .author-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.author-info .author-title {
    color: #64748b;
    font-size: 0.875rem;
}

.author-industry {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Deployment Process Section */
.deployment-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.deployment-process .section-title,
.deployment-process .section-description {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Contact CCTV Section */
.contact-cctv {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-main h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-main p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cctv-quote-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cctv-quote-form input,
.cctv-quote-form select,
.cctv-quote-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.cctv-quote-form input:focus,
.cctv-quote-form select:focus,
.cctv-quote-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cctv-quote-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.contact-sidebar {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.contact-details strong {
    color: #1e293b;
    display: block;
    margin-bottom: 5px;
}

.contact-details span {
    color: #64748b;
    font-size: 0.9rem;
}

.coverage-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.coverage-info h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.coverage-info p {
    color: #64748b;
    margin-bottom: 15px;
}

.coverage-info ul {
    list-style: none;
    padding: 0;
}

.coverage-info li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #374151;
}

.coverage-info li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Responsive Design for CCTV Page */
@media (max-width: 768px) {
    .benefits-grid,
    .applications-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card,
    .application-card,
    .story-card {
        padding: 2rem 1.5rem;
    }

    .contact-main h2 {
        font-size: 2rem;
    }

    /* Contact Info Grid Responsive */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info-box,
    .key-statistics-box {
        padding: 1rem;
    }

    .contact-item-small,
    .stat-item-small {
        font-size: 0.85rem;
    }

    .uk-coverage-section {
        padding: 1.5rem;
    }

    .cities-list-compact {
        gap: 0.25rem;
    }

    .city-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Contact Section Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-seo-links {
        gap: 0.5rem;
    }

    .footer-seo-links a {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-buttons {
        flex-direction: column;
        align-items: center;
    }

    .coverage-buttons .btn-primary,
    .coverage-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Tablet Responsive - Medium Screens */
@media (max-width: 1024px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Service Link Styling - Bottom Aligned */
.service-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 15px;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    align-self: flex-end;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}
