/* ===== PREBID ESTIMATING LLC - MAIN STYLESHEET ===== */
:root {
    --brand-blue: #1f4fa3;
    --brand-orange: #ff9b1a;
    --brand-dark: #2f2f2f;
    --brand-light: #f4f6f8;
    --brand-blue-dark: #0a2a75;
    --logo-blue: #3E78A6;
    --logo-dark: #1F2F44;
    --success-green: #28a745;
    --uk-red: #d80621;
    --uk-blue: #012169;
}

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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    background: var(--brand-blue);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.logo-svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.logo-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-svg rect {
    fill: white !important;
    transition: fill 0.3s ease;
}

.logo-svg path {
    stroke: white !important;
    transition: stroke 0.3s ease;
}

.logo-container:hover .logo-svg rect {
    fill: var(--brand-orange) !important;
}

.logo-container:hover .logo-svg path {
    stroke: var(--brand-orange) !important;
}

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

.logo-text h2 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text .llc {
    color: var(--brand-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--brand-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .badge-new {
    background: var(--brand-orange);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 5px;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(31,79,163,0.85), rgba(31,79,163,0.9)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 140px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: floatLogo 6s ease-in-out infinite;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hero-logo-svg {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.hero-logo-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero-logo-svg rect {
    fill: var(--brand-blue) !important;
}

.hero-logo-svg path {
    stroke: var(--brand-blue-dark) !important;
}

.hero-logo-text {
    text-align: left;
    padding-left: 20px;
    border-left: 3px solid var(--brand-orange);
}

.hero-logo-text h1 {
    font-size: 3rem;
    color: var(--brand-blue);
    margin: 0 0 8px 0;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-logo-text .llc {
    color: var(--brand-dark);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero h2 {
    font-size: 3.2rem;
    margin: 20px 0 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    color: white;
}

.hero-tagline {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
    font-weight: 300;
}

.country-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.country-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.country-badge i {
    font-size: 1.2rem;
}

.country-badge.usa i {
    color: #ff6b6b;
}

.country-badge.canada i {
    color: #ff6b6b;
}

.country-badge.uk i {
    color: var(--brand-orange);
}

/* ===== BUTTONS ===== */
.btn {
    background: var(--brand-orange);
    color: #000;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-orange);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: white;
    color: var(--brand-blue);
    border-color: white;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.95rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    color: var(--brand-blue);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-orange);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
}

/* ===== SERVICE PILLS (New from probuildestimatingllc.com) ===== */
.service-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.service-pill {
    background: var(--brand-light);
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.service-pill i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.service-pill:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-pill:hover i {
    color: white;
}

.service-pill.uk-pill {
    border-color: var(--uk-red);
    background: #fff8f8;
}

.service-pill.uk-pill i {
    color: var(--uk-red);
}

.service-pill.uk-pill:hover {
    background: var(--uk-red);
    border-color: var(--uk-red);
}

.service-pill.bim-pill {
    border-color: var(--brand-blue-dark);
    background: #f0f8ff;
}

/* ===== SOFTWARE SECTION (from probuildestimatingllc.com) ===== */
.software-section {
    background: #f9fafc;
    padding: 50px;
    border-radius: 12px;
    margin: 60px auto;
    text-align: center;
    max-width: 1000px;
}

.software-section h3 {
    color: var(--brand-blue);
    font-size: 2rem;
    margin-bottom: 30px;
}

.software-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.software-tag {
    background: white;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.software-tag:hover {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
    transform: scale(1.05);
}

/* ===== SERVICES GRID (from original) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--brand-light);
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--brand-blue);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card i {
    font-size: 2rem;
    color: var(--brand-orange);
    width: 40px;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.service-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

/* ===== TRADES GRID ===== */
.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trade-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--brand-blue);
    position: relative;
    overflow: hidden;
}

.trade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.trade-card.mep-specialty {
    border-left: 5px solid var(--brand-orange);
    position: relative;
}

.trade-card.mep-specialty:before {
    content: 'SPECIALTY';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--brand-orange);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.trade-card h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trade-card.mep-specialty h3 {
    color: var(--brand-orange);
}

.trade-card i {
    font-size: 1.8rem;
    color: var(--brand-orange);
    width: 40px;
}

.trade-features {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.trade-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.trade-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== UK & BIM SPECIAL STYLES ===== */
.uk-flag-badge {
    background: linear-gradient(135deg, var(--uk-blue) 0%, var(--uk-red) 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.bim-badge {
    background: var(--brand-blue-dark);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.country-header img {
    width: 50px;
    height: auto;
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.stats .services-grid {
    margin-top: 0;
}

.stats .service-card {
    background: rgba(255,255,255,0.1);
    border: none;
    backdrop-filter: blur(10px);
}

.stats div {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== PROCESS SECTION ===== */
.process-container {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-number {
    background: var(--brand-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
    z-index: 1;
}

.process-content {
    background: var(--brand-light);
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-content h4 {
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #f9fafc;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--brand-orange);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(31,79,163,0.2);
}

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

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== CONTACT FORMS ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--brand-light);
    padding: 30px;
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--brand-blue);
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.office-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--brand-blue);
}

.office-card.head-office {
    border-left: 5px solid var(--brand-orange);
    position: relative;
    overflow: hidden;
}

.office-card.head-office:before {
    content: 'HEAD OFFICE';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--brand-orange);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.office-card h4 {
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.contact-item i {
    color: var(--brand-blue);
    font-size: 1.2rem;
    width: 30px;
    margin-top: 3px;
}

.contact-item a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--brand-orange);
    text-decoration: underline;
}

/* Form Styles */
form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-dark);
}

form input, form textarea, form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(31,79,163,0.1);
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--brand-light);
    border: 2px dashed #ccc;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-input-btn:hover {
    border-color: var(--brand-blue);
    background: #e8f0fe;
}

form button {
    background: var(--brand-blue);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: background 0.3s;
}

form button:hover {
    background: var(--brand-blue-dark);
}

/* ===== FOOTER ===== */
footer {
    background: var(--brand-blue-dark);
    color: #fff;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-svg {
    width: 40px;
    height: 40px;
}

.footer-logo-svg svg {
    width: 100%;
    height: 100%;
}

.footer-logo-svg rect {
    fill: white !important;
}

.footer-logo-svg path {
    stroke: white !important;
}

.footer-logo-text h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo-text .llc {
    color: var(--brand-orange);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--brand-orange);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp i {
    font-size: 28px;
}

/* ===== ANIMATIONS ===== */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(31,79,163,0.9), rgba(31,79,163,0.95)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== UK & BIM PAGE SPECIFIC ===== */
.service-highlight {
    background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
    padding: 60px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 5px solid var(--brand-orange);
}

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

.benefit-item {
    text-align: center;
    padding: 25px;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--brand-blue);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-logo {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-logo-container {
        padding: 20px;
    }
    
    .hero-logo-text h1 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .services-grid,
    .trades-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .country-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-logo-text h1 {
        font-size: 1.8rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-svg {
        width: 40px;
        height: 40px;
    }
}