/*
Theme Name: GoFormed
Theme URI: https://goformed.co.uk
Author: GoFormed UK
Author URI: https://goformed.co.uk
Description: Professional UK Company Formation, Shelf Company & Corporate Services. Trusted by businesses worldwide since 2005.
Version: 2.0.0
License: Proprietary
Text Domain: goformed
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=EB+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
    --cream:        #F7F5EF;
    --cream-alt:    #EFECE3;
    --white:        #FFFFFF;
    --navy:         #1B2A4A;
    --navy-light:   #243660;
    --navy-dark:    #0E1A30;
    --gold:         #8B6F3E;
    --gold-light:   #B8923A;
    --gold-border:  #C9A55A;
    --gold-soft:    rgba(139,111,62,0.15);
    --burgundy:     #7A1A1A;
    --text:         #1E1E1E;
    --text-mid:     #464646;
    --text-light:   #686868;
    --border:       #D0C9B8;
    --border-light: #E5E0D5;
    --green:        #2D5C3F;
    --green-light:  #3D7A54;
    --shadow:       rgba(27, 42, 74, 0.09);
    --shadow-deep:  rgba(27, 42, 74, 0.20);
    --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    --font-serif:   'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --radius:       2px;
    --transition:   0.2s ease;
    --header-h:     72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
input, textarea, select, button { font-family: var(--font-sans); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.28;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; font-family: var(--font-display); }
h2 { font-size: 2rem; font-family: var(--font-display); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.22rem; }
h5 { font-size: 1.08rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-mid); }
.text-serif { font-family: var(--font-serif); }
.text-small { font-size: 0.875rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

strong { font-weight: 700; color: var(--text); }
em { font-style: italic; }

blockquote {
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--cream-alt);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 88px 0; }

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 14px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--gold);
}
.section-title.centered::after { left: 50%; transform: translateX(-50%); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-cream-alt { background: var(--cream-alt); }
.bg-white { background: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.2px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--transition); display:inline-flex;align-items:center;gap:5px; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-inner { display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display:inline-flex;align-items:center;gap:5px; }
.top-bar-separator { color: rgba(255,255,255,0.2); margin: 0 4px; }
.trust-pill { color: rgba(255,255,255,0.55); font-size:0.75rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(27,42,74,0.10);
    box-shadow: 0 1px 0 var(--border-light), 0 2px 14px rgba(27,42,74,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}
#site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-border) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#site-header.header-scrolled::after { opacity: 1; }
#site-header.header-scrolled {
    box-shadow: 0 2px 18px rgba(27,42,74,0.12);
}
#site-header.header-hidden {
    transform: translateY(-100%);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
    width: 52px; height: 52px;
    background: var(--navy);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    transition: color var(--transition);
}
/* Animated gold underline */
.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: left 0.22s ease, right 0.22s ease;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li > a.active {
    color: var(--gold);
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li.current-menu-item > a::after,
.main-nav > ul > li > a.active::after {
    left: 16px;
    right: 16px;
}

/* Dropdown */
.main-nav .nav-dropdown,
.main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 2px); left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    min-width: 220px;
    box-shadow: 0 8px 24px var(--shadow-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.18s ease;
    z-index: 999;
    list-style: none;
    padding: 6px 0;
}
.main-nav li.nav-has-dropdown:hover > .nav-dropdown,
.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .nav-dropdown li a,
.main-nav .sub-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition), color var(--transition);
}
.main-nav .nav-dropdown li:last-child a,
.main-nav .sub-menu li:last-child a { border-bottom: none; }
.main-nav .nav-dropdown li a:hover,
.main-nav .sub-menu li a:hover { background: var(--cream); color: var(--gold); padding-left: 22px; }

/* Mobile Nav Toggle */
.mobile-toggle, .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-toggle span, .nav-toggle span {
    width: 24px; height: 2px;
    background: var(--navy);
    transition: var(--transition);
    display: block;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 11px 26px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }
.btn:active { transform: translateY(1px); }

.btn-navy {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
}
.btn-navy:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(14,26,48,0.4);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 2px 6px rgba(139,111,62,0.2);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(139,111,62,0.38);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: rgba(27,42,74,0.35);
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.7); }

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); color: var(--white); }

.btn-sm { padding: 7px 18px; font-size: 0.78rem; }
.btn-lg { padding: 14px 36px; font-size: 0.92rem; }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover { background: #1fba59; border-color: #1fba59; color: var(--white); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}
/* Subtle linen-texture overlay for a more editorial, firm-like look */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(11,18,36,0.70) 0%, rgba(27,42,74,0.55) 60%, rgba(36,54,96,0.40) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
/* Refined diagonal rule — law-firm editorial detail */
.hero::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 340px;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139,111,62,0.25) 30%, rgba(139,111,62,0.25) 70%, transparent 100%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,111,62,0.18);
    border: 1px solid rgba(201,165,90,0.45);
    color: var(--gold-border);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 1px;
    margin-bottom: 22px;
    font-family: var(--font-sans);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 3.4rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold-border); }
.hero .lead { color: rgba(255,255,255,0.78); font-size: 1.08rem; margin-bottom: 2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* Hero Card — law-firm brief-style card */
.hero-card {
    background: var(--white);
    border-radius: 1px;
    padding: 32px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(201,165,90,0.3);
    border-top: 3px solid var(--gold-border);
    position: relative;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-border) 100%);
}
.hero-card h3 {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}
.hero-card .form-group { margin-bottom: 14px; }
.hero-card label { display: block; font-size: 0.76rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-card input, .hero-card select, .hero-card textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 1px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(139,111,62,0.08);
}
.hero-card .btn { width: 100%; text-align: center; margin-top: 6px; }
.hero-card .privacy-note { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 10px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--border-light);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}
.trust-icon {
    width: 32px; height: 32px;
    background: var(--navy-dark);
    color: var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-sans);
    flex-shrink: 0;
    border: 1px solid rgba(201,165,90,0.3);
}
.trust-divider { width: 1px; height: 24px; background: var(--border-light); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--navy);
    padding: 28px 24px;
    transition: border-top-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-top-color: var(--gold); box-shadow: 0 4px 20px var(--shadow); }
.service-icon {
    width: 48px; height: 48px;
    background: var(--cream-alt);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--navy);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }
.service-card .read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* ============================================================
   WHY CHOOSE US / FEATURES
   ============================================================ */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-check {
    width: 24px; height: 24px;
    background: var(--green);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    border-radius: 50%;
    margin-top: 1px;
}

/* ============================================================
   NUMBERED STEPS / PROCESS
   ============================================================ */
.steps-list { counter-reset: step-counter; }
.step-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}
.step-item:last-child { border-bottom: none; }
.step-num {
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: 0.9rem; margin: 0; }

/* Step Card (new 4-col horizontal style) */
.step-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.step-card:hover {
    box-shadow: 0 8px 28px var(--shadow-deep);
    transform: translateY(-3px);
}
.step-card-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-border);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}
.step-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.step-card p { font-size: 0.88rem; margin: 0; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 24px;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold-light);
    line-height: 1;
    position: absolute;
    top: 10px; left: 16px;
    opacity: 0.35;
}
.testimonial-body { font-size: 0.95rem; font-style: italic; color: var(--text-mid); padding-top: 24px; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.author-company { font-size: 0.78rem; color: var(--text-light); }
.stars { color: #F5A623; font-size: 0.85rem; margin-bottom: 4px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border: 1px solid var(--border);
    border-top: none;
    background: var(--white);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-question .faq-icon { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--gold-light); }
.faq-answer {
    display: none;
    padding: 18px 22px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ============================================================
   COMPANY TABLES (Shelf Companies)
   ============================================================ */
.company-table-wrap { overflow-x: auto; }
.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: var(--white);
    border: 1px solid var(--border);
}
.company-table thead {
    background: var(--navy);
    color: var(--white);
}
.company-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.company-table thead th:last-child { border-right: none; }
.company-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background var(--transition); }
.company-table tbody tr:hover { background: #FDFCF7; }
.company-table tbody tr:nth-child(even) { background: var(--cream); }
.company-table tbody tr:nth-child(even):hover { background: #F5F2E8; }
.company-table td {
    padding: 12px 16px;
    color: var(--text);
    border-right: 1px solid var(--border-light);
}
.company-table td:last-child { border-right: none; text-align: center; }
.company-name { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.company-number { font-family: monospace; font-size: 0.85rem; color: var(--text-light); }
.badge {
    display: inline-block;
    padding: 3px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.badge-available { background: #E6F4ED; color: var(--green); border: 1px solid #B8DFC8; }
.badge-vat { background: #EDF2FA; color: var(--navy); border: 1px solid #BFD0EC; }
.badge-eori { background: #FBF3E8; color: var(--gold); border: 1px solid #E8CFA0; }
.badge-bank { background: #F9EDF0; color: var(--burgundy); border: 1px solid #E5C0CA; }

.table-cta-group { display: flex; gap: 6px; justify-content: center; align-items: center; flex-wrap: nowrap; }
.table-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}
.table-btn-email { background: var(--navy); color: var(--white); }
.table-btn-email:hover { background: var(--navy-dark); color: var(--white); }
.table-btn-wa { background: #25D366; color: var(--white); }
.table-btn-wa:hover { background: #1ebe5a; color: var(--white); }

/* ============================================================
   TABS
   ============================================================ */
.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--navy);
    overflow-x: auto;
    margin-bottom: 0;
}
.tab-btn {
    padding: 13px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    background: var(--cream-alt);
    color: var(--text-mid);
    border: 1px solid var(--border);
    border-bottom: none;
    border-right: none;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: -1px;
}
.tab-btn:first-child { border-left: none; }
.tab-btn:hover { background: var(--cream); color: var(--navy); }
.tab-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    position: relative;
    z-index: 1;
}
.tab-pane { display: none; padding: 28px 0; }
.tab-pane.active { display: block; }

/* ============================================================
   INCLUDED ITEMS / PACKAGE BOX
   ============================================================ */
.package-box {
    background: var(--white);
    border: 2px solid var(--navy);
    padding: 28px;
}
.package-box h3 { border-bottom: 2px solid var(--gold); padding-bottom: 12px; margin-bottom: 18px; }
.package-list { list-style: none; margin: 0; padding: 0; }
.package-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-light);
    font-size: 0.93rem;
    color: var(--text-mid);
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   INFO BOX / NOTICE
   ============================================================ */
.info-box {
    border-left: 4px solid var(--navy);
    background: var(--white);
    padding: 18px 22px;
    margin: 20px 0;
}
.info-box.info-gold { border-left-color: var(--gold); }
.info-box.info-green { border-left-color: var(--green); }
.info-box.info-red { border-left-color: var(--burgundy); }
.info-box h4 { margin-bottom: 8px; font-size: 1rem; }
.info-box p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-bar { background: var(--navy); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 6px; }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { margin-top: 8px; }

/* ============================================================
   SIDEBAR / INFO PANEL
   ============================================================ */
.sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-box h4 {
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    margin-bottom: 16px;
}
.sidebar-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px dashed var(--border-light);
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 54px 0;
    border-bottom: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.012) 40px,
        rgba(255,255,255,0.012) 41px
    );
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 2.3rem; margin-bottom: 8px; font-family: var(--font-display); letter-spacing: -0.02em; }
.page-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: flex; gap: 8px; align-items: center; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumb a:hover { color: var(--gold-border); }
.page-hero-subtitle { color: rgba(255,255,255,0.76); font-size: 1rem; margin-top: 10px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
    background: var(--cream-alt);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 {
    font-size: 1.35rem;
    color: var(--navy);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 14px;
}
.legal-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 6px; font-size: 0.95rem; color: var(--text-mid); padding: 2px 0; }
.legal-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 14px; }
.legal-content p { font-size: 0.96rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.72);
    padding: 64px 0 0;
    border-top: 0;
    position: relative;
}
/* Bold gold top rule */
#site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-border) 50%, var(--gold) 100%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-about .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0; color: rgba(255,255,255,0.65); }
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--gold-light); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.87rem;
}
.footer-contact-icon { color: var(--gold-light); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,0.7); }
.footer-contact-text a:hover { color: var(--gold-light); }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.footer-legal-links a:hover { color: var(--gold-light); }
.reg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}
.disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    background: rgba(0,0,0,0.15);
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 0 -24px;
    margin-top: 20px;
}

/* ============================================================
   SEO LANDING PAGES
   ============================================================ */
.seo-hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 64px 0 52px;
    border-bottom: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.seo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.012) 40px,
        rgba(255,255,255,0.012) 41px
    );
    pointer-events: none;
}
.seo-hero .container { position: relative; z-index: 1; }
.seo-hero h1 { color: var(--white); font-size: 2.5rem; line-height: 1.18; margin-bottom: 0.5rem; font-family: var(--font-display); letter-spacing: -0.02em; }
.seo-hero .seo-subtitle { color: var(--gold-border); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1rem; font-style: italic; }
.seo-hero .lead { color: rgba(255,255,255,0.76); }
.seo-hero .btn { margin-top: 10px; margin-right: 10px; }

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { max-width: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.55rem; }
    h3 { font-size: 1.3rem; }
    .hero { padding: 50px 0; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .section { padding: 44px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    #main-nav { display: none; }
    #main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--navy); box-shadow: 0 4px 16px var(--shadow-deep); z-index: 999; }
    #main-nav.open ul { flex-direction: column; }
    #main-nav.open > ul > li > a { padding: 14px 20px; border-bottom: 1px solid var(--border-light); border-bottom-width: 1px; }
    #main-nav.open .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream); border-top: 1px solid var(--border-light); }
    #main-nav.open li:hover > .sub-menu { opacity: 1; }
    .nav-toggle { display: flex; }
    .header-cta { display: none; }
    .topbar-left { display: none; }
    .trust-bar-inner { gap: 18px; }
    .trust-divider { display: none; }
    .tab-btn { padding: 10px 14px; font-size: 0.78rem; }
    .company-table { font-size: 0.8rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .seo-hero h1 { font-size: 1.75rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border-light); margin: 28px 0; }
.divider-thick { border-top-width: 2px; border-color: var(--navy); }
.gold-rule { width: 60px; height: 3px; background: var(--gold); margin: 12px 0; }
.gold-rule.centered { margin: 12px auto; }

.alert { padding: 14px 18px; font-size: 0.9rem; border-left: 4px solid; margin-bottom: 20px; background: var(--white); }
.alert-success { border-color: var(--green); color: var(--green); }
.alert-info { border-color: var(--navy); color: var(--navy); }
.alert-warning { border-color: var(--gold); color: var(--gold); }
.alert-error { border-color: var(--burgundy); color: var(--burgundy); }

.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.sticky-top { position: sticky; top: 90px; }

/* Schema hidden elements */
.schema-hidden { position: absolute; left: -9999px; visibility: hidden; }

/* Smooth transition for accordions */
.faq-answer { transition: none; }

/* Popular searches tags */
.popular-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.popular-tag {
    display: inline-block;
    padding: 5px 13px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-mid);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.popular-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Same-day badge */
.same-day-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    margin-bottom: 24px;
}

/* ============================================================
   VISUALLY HIDDEN (SEO keyword library – white-hat)
   Visible to crawlers, hidden from visual users
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.gf-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.gf-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TOP BAR (header.php)
   ============================================================ */
.top-bar {
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 7px 0;
    font-size: 0.78rem;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.top-bar-item { color: rgba(255,255,255,0.7); font-size: 0.77rem; }
.top-bar-item a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.top-bar-item a:hover { color: var(--gold-light); }
.top-bar-separator { color: rgba(255,255,255,0.2); }
.trust-pill {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}

/* ============================================================
   MOBILE TOGGLE (hamburger)
   ============================================================ */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-toggle span { width: 26px; height: 2px; background: var(--navy); transition: var(--transition); display: block; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .header-cta .btn { display: none; }
    .top-bar-left { display: none; }
    .trust-pill:not(:first-child) { display: none; }
}

/* ============================================================
   FOOTER BOTTOM BAR
   ============================================================ */
.footer-bottom {
    background: rgba(0,0,0,0.28);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    margin-top: 0;
}
.footer-bottom-left {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
.footer-bottom-left a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-bottom-left a:hover { color: var(--gold-light); }
.footer-bottom-right {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
}
@media (max-width: 900px) {
    .top-bar-right .trust-pill:nth-child(n+4) { display: none; }
}
