/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

p{margin-top: 14px; margin-bottom:14px;}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header */
.header {
    background: #ca0e21;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Logo */
.logo {
    text-decoration: none;
    font-size: 0.1rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
}

.logo-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Desktop Nav */
.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #6366f1;
}

.nav-list .btn-primary {
    background: #011a6b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-list .btn-primary:hover {
    background: #011a6b;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.drop-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 0.75rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #444;
}

.dropdown-menu a:hover {
    background: #f8f9ff;
    color: #6366f1;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-submenu {
    background: #f8f9ff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

..mobile-submenu a {text-align:left !important;}

.dropdown-menu li{list-style: none; }

.mobile-submenu a {
    padding: 0.75rem 3rem;
    font-size: 0.95rem;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
}

.mobile-arrow {
    float: right;
    transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(90deg);
}

.mobile-btn {
    margin: 1rem 2rem;
    text-align: center;
}

/* ... previous CSS remains the same until Mobile Nav section ... */

/* Mobile Nav - FIXED */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 0;                    /* Start closed */
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
}

.header.active .mobile-nav {
    max-height: 800px;                /* Open state */
}

/* Mobile arrow – works everywhere, no more question marks */
/* === DESKTOP & MOBILE ARROWS – Pure CSS, identical look === */
.desktop-arrow,
.mobile-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    position: relative;
    transition: transform 0.3s ease;
}

.desktop-arrow::before,
.desktop-arrow::after,
.mobile-arrow::before,
.mobile-arrow::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: currentColor;
    top: 50%;
    right: 2px;
}

/* Default state: pointing down (desktop) / right (mobile) */
.desktop-arrow::before {
    transform: translateY(-2px) rotate(45deg);
}
.desktop-arrow::after {
    transform: translateY(2px) rotate(-45deg);
}
.mobile-arrow::before {
    transform: translateY(-3px) rotate(40deg);
}
.mobile-arrow::after {
    transform: translateY(1px) rotate(-40deg);
}

/* Active / Hover state */
.dropdown:hover .desktop-arrow,
.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

/* Optional: slightly tighter rotation for mobile when open */
.mobile-dropdown.active .mobile-arrow {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .header.active .mobile-nav {
        display: block;
    }
}

/* === MEGA DROPDOWN – Full Width === */
.mega-dropdown {
    position: static; /* Important: allows mega menu to break out of container */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 4px solid #6366f1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    z-index: 999;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.mega-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-column ul {
    list-style: none;
}

.mega-column a {
    display: block;
    padding: 0.5rem 0;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.mega-column a:hover {
    color: #6366f1;
}

.highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.highlight p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.highlight .btn-primary {
    background: white;
    color: #6366f1;
    align-self: flex-start;
}

.highlight .btn-primary:hover {
    background: #f8f9ff;
}



/* MOBILE MEGA MENU – Beautiful accordion version */
/* ------------------------------
   MOBILE NAVIGATION – FULLY FIXED
   ------------------------------ */
.mobile-nav {
    position: fixed;
    top: 80px;                          /* change only if your header height ? ~80px */
    left: 0;
    right: 0;
    background: #ffffff;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-120%);
    transition: transform 0.45s cubic-bezier(0.32, 0, 0.08, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header.active .mobile-nav {
    transform: translateY(0);
}

/* Normal mobile submenu (Services, Company, etc.) */
.mobile-submenu {
    background: #f8f9ff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.mobile-dropdown.active > .mobile-submenu {
    max-height: 600px;           /* more than enough for normal dropdowns */
}

/* MEGA MOBILE MENU – Solutions */
.mobile-mega-content {
    background: #f8f9ff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;             /* padding when closed = 0 */
}

.mobile-mega.active > .mobile-mega-content {
    padding: 0 2rem;
}

.mobile-mega.active > .mobile-mega-content {
    max-height: 1400px;          /* huge value – will never cut content */
    padding: 2.5rem 2rem 3rem;
    overflow-y: visible;         /* content itself can scroll if needed */
}

/* Columns inside the mobile mega menu */
.mobile-mega-column {
    margin-bottom: 2.5rem;
}

.mobile-mega-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-mega-column a {
    display: block;
    padding: 0.85rem 0;
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.mobile-mega-column a:hover {
    color: #6366f1;
}

/* Highlight call-to-action box */
.mobile-mega-highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 1rem 0 1.5rem;
}

.mobile-mega-highlight h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mobile-mega-highlight p {
    opacity: 0.95;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.mobile-mega-highlight .btn-primary {
    background: white;
    color: #6366f1;
    font-weight: 600;
}

/* Prevent body scroll when menu is open (feels premium) */
.header.active {
    overflow: hidden;
    height: 100vh;         /* optional – locks the page */
}


.hero {
    height: 90vh;
    min-height: 650px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('https://weuk.co.uk/images/front/march.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    margin-top: 0px;
}
.hero h1 { font-size: 4.8rem; margin-bottom: 20px; }
.hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 30px; }
.btn-primary {
    background: #011a6b; color: white; padding: 16px 36px;
    border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem;
    transition: background .3s;
}
.btn-primary:hover { background: #a10d23; }
.btn-primary.inverted { background: white; color: #c8102e; }

.pgap{margin-bottom:20px;}

/* Main layout */
main { padding: 20px 20px 20px; max-width: 1300px; margin: 0 auto; }
.section-title {
    text-align: center; font-size: 2.8rem; margin-bottom: 60px; color: #003087;
    position: relative;
}
.section-title::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    bottom: -15px; width: 90px; height: 6px; background: #c8102e; border-radius: 3px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: left;
    margin-bottom: 40px;
}
.grid img {
    width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.grid.reverse { direction: rtl; }
.grid.reverse > * { direction: ltr; }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}
.feature-card i { font-size: 3.5rem; color: #c8102e; margin-bottom: 20px; }

.cta-section {
    text-align:center; padding: 80px 20px;
    background: linear-gradient(135deg, #003087, #c8102e);
    color: white; border-radius: 20px;
}
.cta-section h2 { color: white; margin-bottom: 30px; }

/* Responsive */
@media (max-width: 868px) {
    .grid, .grid.reverse { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.2rem; }
    .hamburger { display: block; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0;
                background: white; padding: 20px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; text-align: center; gap: 20px; }
}

    .we { fill: #003087; font-family: 'Inter', 'Montserrat', Arial, sans-serif; font-weight: 800; font-size: 72px; }
    .uk { fill: #C8102E; font-family: 'Inter', 'Montserrat', Arial, sans-serif; font-weight: 800; font-size: 72px; }
    .tagline { fill: #000; font-family: 'Inter', Arial, sans-serif; font-size: 18px; font-weight: 500; letter-spacing: 1.9px; }
    
    /* ============================================================= */
/* 50 Peaceful Ways – weuk.co.uk                                 */
/* ============================================================= */

.power-ideas {
    
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15)
}

.power-ideas h1 {
    text-align: center;
    font-size: 2.6rem;
    color: #1a3c6e;
    margin-bottom: 20px;
}

.power-ideas .intro {
    text-align: left;
    font-size: 1.25rem;
    color: #444;
    
    margin: 0 auto 40px;
}

.ideas-list {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    list-style: none;
    counter-reset: item;
    columns: 2;
    column-gap: 50px;
    margin: 0 0 50px 0;
}

.ideas-list li {
    margin-bottom: 20px;
    break-inside: avoid;
    position: relative;
    padding-left: 10px;
}

.ideas-list li:before {
    counter-increment: item;
    content: counter(item) ".";
    color: #e63946;
    font-weight: bold;
    margin-right: 8px;
    position: absolute;
    left: -20px;
}

.ideas-list strong {
    color: #1a3c6e;
}

.call-to-action {
    text-align: center;
    margin-top: 50px;
}

.call-to-action p {
    font-size: 1.4rem;
    color: #1a3c6e;
    margin-bottom: 25px;
}

.call-to-action .btn {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: background 0.3s;
}

.call-to-action .btn:hover {
    background: #c1121f;
}

/* Responsive – single column on tablets & phones */
@media (max-width: 900px) {
    .ideas-list { columns: 1; }
    .power-ideas h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .power-ideas { padding: 15px; }
    .ideas-list { padding: 25px; }
    .call-to-action .btn { padding: 14px 30px; font-size: 1.1rem; }
}
    
    
 /* ============================================================= */
/* 100% GUARANTEED VERTICAL – NOTHING EVER GOES SIDE-BY-SIDE     */
/* ============================================================= */

.force-vertical { 
    padding: 60px 15px; 
    background: #f8f9fc; 
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.force-vertical .wrapper { 
    max-width: 960px; 
    margin: 0 auto; 
    width: 100%;
}

/* Force everything to full width and stack */
.force-vertical * { 
    box-sizing: border-box; 
    max-width: 100% !important; 
}

.force-vertical h1 {
    font-size: 2.5rem;
    text-align: left;
    color: #1a3c6e;
    margin: 0 0 35px 0;
    width: 100%;
}

.force-vertical .lead {
    font-size: 1.3rem;
    text-align: left;
    margin: 0 auto 50px;
    max-width: 800px;
    width: 100%;
}

.force-vertical h2 {
    font-size: 1.9rem;
    color: #1a3c6e;
    margin: 55px 0 20px;
    padding-bottom: 10px;
    border-bottom: 4px solid #e63946;
    width: fit-content;
}

.text-block, .lever-block, .tipping-block {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    width: 100%;
    display: block;
}

.lever-block h3 {
    margin: 0 0 12px 0;
    color: #1a3c6e;
    font-size: 1.4rem;
}

.tipping-block {
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
}

.big-quote {
    background: #1a3c6e;
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: left;
    margin: 60px 0;
    font-size: 1.4rem;
    line-height: 1.8;
    width: 100%;
}

.final-cta { 
    text-align: left; 
    margin: 70px 0 20px; 
}

.big-button {
    display: inline-block;
    background: #e63946;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
}

/* Final nuclear option – no side-by-side ever */
@media screen and (min-width: 1px) {
    .force-vertical * { float: none !important; display: block !important; width: 100% !important; }
}
    
    
    /* ============= FOOTER ============= */
.site-footer {
    background: #0a1d37;
    color: #ddd;
    margin-top: 150px;
    padding-top: 80px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: #c8102e;
}
.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: #c8102e;
    margin-bottom: 15px;
}
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.social-links a {
    font-size: 1.4rem;
    color: #bbb;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #c8102e;
}
.footer-bottom {
    margin-top: 60px;
    padding: 25px 20px;
    border-top: 1px solid #22334d;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Mobile footer */
@media (max-width: 868px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}