/* ==========================================================================
   Notary Public Institutional Style Architecture - Eva S. Naoum
   ========================================================================== */


:root {
    --primary-dark: #282e3f;    /* Deep Blue-Grey */
    --secondary-dark: #1a1a19;  /* Anthracite */
    --accent-gold: #c0b596;     /* Muted Gold */
    --hover-gold: #d4c291;      /* Light Gold Accent */
    --bg-white: #ffffff;        /* Main Canvas */
    --bg-light: #f7f7f7;        /* Contrast Background Section */
    --text-dark: #313131;       /* Readable Prose */
    --font-heading: 'Literata', serif;
    --font-body: 'Arimo', sans-serif;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-gold);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Header Logo Flex Alignment Fix */
.logo-link {
    display: flex;
    align-items: center; /* Vertically centers the logo graphic with the text block */
    gap: 12px;           /* Sets precise horizontal distance between image and text */
    height: 100%;
}

.logo-image {
    height: 55px;        /* Explicit sizing to safely fit within the 90px header constraint */
    width: auto;
    object-fit: contain; /* Prevents aspect-ratio stretching */
    flex-shrink: 0;      /* Guarantees the image won't squash on smaller screens */
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column; /* Stacks name cleanly on top of the sub-headline */
    justify-content: center;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    white-space: nowrap; /* Forces text to remain on a single line */
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-top: 3px;
    white-space: nowrap; /* Prevents the longer subtitle from dropping into a third row */
}

.main-navigation > ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-dark);
}

.main-navigation a:hover,
.main-navigation .active {
    color: var(--accent-gold);
}

/* Hero Interface */
.hero {
    background-color: var(--secondary-dark);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 42px;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: #e2e5eb;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 3px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--secondary-dark);
}

.btn-primary:hover {
    background-color: var(--hover-gold);
    color: var(--secondary-dark);
}

.btn-secondary {
    border: 1px solid var(--accent-gold);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: rgba(192, 181, 150, 0.1);
    color: var(--bg-white);
}

/* Modular Sections */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 15px auto 0 auto;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #666;
}

/* Custom Semantic Grid Layout */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background-color: var(--bg-white);
    padding: 30px;
    border: 1px solid #ececec;
    border-top: 3px solid var(--primary-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top-color: var(--accent-gold);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Strategic Intent Process Steps */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 0 auto 15px auto;
    border: 2px solid var(--accent-gold);
}

.step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: #666;
}

/* Compliance Intake Form UI */
.intake-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid #ececec;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: 2px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

/* Two-Column Profile Architecture */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

@media (min-width: 850px) {
    .profile-grid {
        grid-template-columns: 350px 1fr;
    }
}

.profile-sticky-card {
    position: sticky;
    top: 120px;
    background-color: var(--bg-white);
    border: 1px solid #ececec;
    padding: 20px;
    text-align: center;
}

.profile-portrait {
    width: 100%;
    height: auto;
    max-width: 310px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent-gold);
    margin-bottom: 20px;
}

.profile-meta-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.profile-meta-sub {
    font-size: 13px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Institutional List Components */
.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 22px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.institutional-list {
    list-style: none;
    padding: 0;
}

.institutional-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
}

.institutional-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 18px;
    top: -2px;
}

/* Footer Section */
.site-footer {
    background-color: var(--secondary-dark);
    color: #c5c5c5;
    padding: 60px 0 20px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--bg-white);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul a {
    color: #c5c5c5;
}

.footer-widget ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #2d2d2d;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #888;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--bg-light);
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
    font-size: 13px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li + li::before {
    content: "›";
    color: #aaa;
    margin-right: 6px;
}

.breadcrumb a {
    color: #777;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb li:last-child span {
    color: var(--primary-dark);
    font-weight: 500;
}

/* Hamburger Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header right group: nav + lang switcher + mobile toggle */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}
.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    padding: 4px 6px;
    font-family: inherit;
    transition: color 0.15s;
}
.lang-dropdown-toggle:hover,
.lang-dropdown:focus-within .lang-dropdown-toggle {
    color: var(--accent-gold);
}
.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--accent-gold);
    min-width: 0;
    width: max-content;
    z-index: 1001;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 4px 0;
    list-style: none;
}
.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu {
    display: block;
}
.lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.15s, padding-left 0.15s;
    color: var(--primary-dark);
}
.lang-dropdown-menu li:last-child .lang-opt { border-bottom: none; }
.lang-opt .lang-name { font-size: 11px; font-weight: 400; color: #999; }
a.lang-opt:hover { color: var(--accent-gold); padding-left: 20px; }
a.lang-opt:hover .lang-name { color: var(--accent-gold); }
.lang-opt-active { color: var(--accent-gold); }
.lang-opt-active .lang-name { color: var(--accent-gold); }
.lang-opt-soon { color: #ccc; cursor: default; }
.lang-opt-soon .lang-name { color: #ccc; }

/* Members Area Button (desktop) */
.members-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1.5px solid #d8d8d8;
    border-radius: 50%;
    color: var(--primary-dark);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
    flex-shrink: 0;
}
.members-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Mobile nav footer — hidden on desktop, shown inside open burger menu */
.mobile-nav-footer {
    display: none;
}

/* Profile Social Icons */
.profile-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
}
.profile-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.profile-social-btn:hover {
    opacity: 0.82;
    transform: translateY(-2px);
}
.profile-social-linkedin {
    background-color: #0a66c2;
    color: #fff;
}
.profile-social-email {
    background-color: var(--primary-dark);
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container { height: 76px; }
    .logo-image { height: 54px; }
    .logo-title { font-size: 16px; }
    .logo-sub { font-size: 10px; }
    .nav-toggle { display: flex; }
    /* Hide desktop-only header items on mobile */
    .lang-dropdown { display: none; }
    .members-btn { display: none; }
    .main-navigation {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 1px solid #ececec;
        border-bottom: 3px solid var(--primary-dark);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .main-navigation.open { display: block; }
    .main-navigation ul { flex-direction: column; gap: 0; padding: 6px 0; }
    .main-navigation li a { display: block; padding: 14px 24px; font-size: 16px; border-bottom: 1px solid #f0f0f0; }
    .main-navigation li:last-child a { border-bottom: none; }
    /* Mobile nav footer: members + lang inside burger menu */
    .main-navigation.open .mobile-nav-footer {
        display: block;
        border-top: 1px solid #f0f0f0;
        padding-bottom: 6px;
    }
    .mobile-members-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 500;
        color: var(--primary-dark);
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.15s;
    }
    .mobile-members-link:hover { color: var(--accent-gold); }
    .mobile-nav-lang {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 6px;
        padding: 11px 24px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    .mobile-nav-lang .lang-item { text-decoration: none; padding: 0 2px; }
    .mobile-nav-lang a.lang-item { color: var(--primary-dark); }
    .mobile-nav-lang .lang-current { color: var(--accent-gold); }
    .mobile-nav-lang .lang-soon { color: #bbb; }
    .mobile-nav-lang .lang-sep { color: #ddd; font-weight: 300; }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .section { padding-top: 40px; padding-bottom: 40px; }
    .services-sidebar { position: static; align-self: auto; }
    .profile-sticky-card { position: static; }
    .container { padding-left: 20px; padding-right: 20px; }
    html, body { overflow-x: hidden; }
}

/* ==========================================================================
   Services Grid & Architectural Additions
   ========================================================================== */

/* Split Section Master Layout */
.services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (min-width: 900px) {
    .services-layout {
        grid-template-columns: 280px 1fr;
    }
}

/* Sticky Anchored Navigation Links */
.services-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
    background-color: var(--bg-light);
    padding: 25px;
    border: 1px solid #ececec;
    border-top: 3px solid var(--primary-dark);
}

.services-sidebar h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    transition: all 0.2s ease;
}

.sidebar-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* Elegant Service Block List Layout */
.service-row-item {
    background-color: var(--bg-white);
    border: 1px solid #ececec;
    padding: 35px;
    margin-bottom: 30px;
    transition: border-color 0.2s ease;
}

.service-row-item:hover {
    border-color: var(--accent-gold);
}

.service-row-item h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-explanation-box {
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent-gold);
    padding: 15px 20px;
    margin: 15px 0 20px 0;
    font-size: 14px;
    color: #555;
    text-align: justify;
}

/* Horizontal Process Flow Enhancements */
.process-vertical-stack {
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
}

.process-vertical-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-vertical-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background-color: #ececec;
    z-index: 1;
}

.process-vertical-item:last-child::before {
    display: none;
}

.process-vertical-badge {
    width: 52px;
    height: 52px;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 2;
}

.process-vertical-content {
    background-color: var(--bg-white);
    border: 1px solid #ececec;
    padding: 25px;
    width: 100%;
}

.process-vertical-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ==========================================================================
   FAQ & Contact Structural Additions
   ========================================================================== */

/* FAQ Stack Architecture */
.faq-stack {
    max-width: 850px;
    margin: 30px auto 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid #ececec;
    border-left: 3px solid var(--primary-dark);
    padding: 25px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-item h3 {
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    color: #555;
    text-align: justify;
}

/* Contact Interface Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-meta-box {
    background-color: var(--bg-light);
    border-top: 3px solid var(--accent-gold);
    padding: 40px;
    height: 100%;
}

.contact-meta-item {
    margin-bottom: 25px;
}

.contact-meta-item h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-meta-item p {
    font-size: 16px;
    color: var(--text-dark);
}

/* Responsive Maps Container */
.map-iframe-container {
    position: relative;
    width: 100%;
    height: 350px;
    border: 1px solid #ececec;
    margin-top: 20px;
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Nav Dropdown Submenu */
.has-dropdown {
    position: relative;
}
.has-dropdown > a::after {
    content: " ›";
    display: inline-block;
    transform: rotate(90deg);
    font-size: 11px;
    margin-left: 2px;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.has-dropdown:hover > a::after {
    opacity: 1;
}
.dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--accent-gold);
    min-width: 270px;
    z-index: 200;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 6px 0;
    list-style: none;
}
.has-dropdown:hover .dropdown-menu {
    display: flex;
}
.has-dropdown .dropdown-menu {
    gap: 0;
}
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.15s, padding-left 0.15s;
    white-space: nowrap;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu a:hover {
    color: var(--accent-gold);
    padding-left: 26px;
}
.dropdown-sub-item > a {
    padding-left: 34px;
    font-size: 12px;
    color: #777;
}
.dropdown-sub-item > a::before {
    content: "↳ ";
    color: var(--accent-gold);
}
.dropdown-sub-item > a:hover {
    padding-left: 38px;
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .has-dropdown > a::after { display: none; }
    .has-dropdown > a::after {
        content: " ▸";
        display: inline-block;
        font-size: 10px;
        margin-left: 4px;
        opacity: 0.5;
        transform: none;
        transition: transform 0.2s;
    }
    .has-dropdown.dropdown-open > a::after {
        transform: rotate(90deg);
        opacity: 1;
    }
    .has-dropdown.dropdown-open .dropdown-menu {
        display: flex;
        flex-direction: column;
        position: static;
        box-shadow: none;
        border: none;
        border-top: none;
        border-left: 2px solid var(--accent-gold);
        padding: 0;
        margin: 2px 0 6px 14px;
        min-width: 0;
        gap: 0;
    }
    .dropdown-menu a {
        padding: 7px 10px;
        font-size: 14px;
        border-bottom: none;
    }
    .dropdown-menu a:hover { padding-left: 14px; }
    .dropdown-sub-item > a { padding-left: 22px; font-size: 13px; }
    .dropdown-sub-item > a:hover { padding-left: 26px; }
}

/* ==========================================================================
   Blog / Ενημέρωση
   ========================================================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 10px;
}
.post-card {
    background: var(--bg-white);
    border: 1px solid #ececec;
    border-top: 3px solid var(--primary-dark);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
}
.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-top-color: var(--accent-gold);
}
.post-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.post-card h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--primary-dark);
}
.post-card h2 a { color: inherit; text-decoration: none; transition: color 0.15s; }
.post-card h2 a:hover { color: var(--accent-gold); }
.post-meta { font-size: 12px; color: #aaa; margin-bottom: 12px; }
.post-excerpt { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.post-read-more { font-size: 13px; font-weight: 600; color: var(--accent-gold); text-decoration: none; transition: color 0.15s; }
.post-read-more:hover { color: var(--primary-dark); }

/* Single article */
.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 900px) {
    .article-layout { grid-template-columns: 1fr 280px; }
}
.article-header {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #ececec;
}
.article-header h1 { font-size: 28px; line-height: 1.35; margin: 10px 0 16px; }
.article-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; font-size: 13px; color: #999; }
.article-body h2 { font-size: 20px; margin: 36px 0 12px; color: var(--primary-dark); border-bottom: 1px solid #f0f0f0; padding-bottom: 8px; }
.article-body h3 { font-size: 16px; margin: 24px 0 8px; color: var(--primary-dark); }
.article-body p { font-size: 16px; line-height: 1.85; color: #444; margin-bottom: 18px; text-align: justify; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { font-size: 15px; line-height: 1.75; color: #444; margin-bottom: 6px; }
.article-cta {
    background: var(--bg-light);
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--accent-gold);
    padding: 22px 26px;
    margin: 36px 0;
}
.article-cta p { margin: 0 0 12px; font-size: 15px; color: var(--primary-dark); font-weight: 500; line-height: 1.6; }
.article-cta a { font-size: 13px; font-weight: 600; color: var(--accent-gold); text-decoration: none; }
.article-cta a:hover { color: var(--primary-dark); }
.article-sidebar-box {
    background: var(--bg-light);
    border: 1px solid #ececec;
    border-top: 3px solid var(--primary-dark);
    padding: 22px;
}
.article-sidebar-box h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary-dark); margin-bottom: 14px; }
.article-sidebar-box p { font-size: 13px; color: #666; line-height: 1.6; }

/* ==========================================================================
   Facts Grid
   ========================================================================== */

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.facts-item {
    padding: 20px;
}
.facts-item-mid {
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}
@media (max-width: 640px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .facts-item-mid {
        border-left: none;
        border-right: none;
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }
    .facts-item {
        padding: 18px 10px;
    }
}

/* ==========================================================================
   Klaro Cookie Consent — full colour override to match site palette
   Green (#5bc67b / #1a936f) → replaced everywhere with site navy + gold
   ========================================================================== */

.klaro .cookie-notice,
.klaro .cookie-modal {
    font-family: 'Arimo', Arial, sans-serif;
}

/* ---- Decline + Accept All share the same neutral style ---- */
.klaro .cm-btn.cm-btn-decline,
.klaro .cm-btn.cm-btn-success,
.klaro .cm-btn.cm-btn-accept-all,
.klaro .cm-btn-accept-all {
    background-color: #6c757d !important;
    color: #fff !important;
    border-color: #6c757d !important;
}
.klaro .cm-btn.cm-btn-decline:hover,
.klaro .cm-btn.cm-btn-success:hover,
.klaro .cm-btn.cm-btn-accept-all:hover {
    background-color: #565e64 !important;
    border-color: #565e64 !important;
}

/* ---- Accept Selected ---- */
.klaro .cm-btn.cm-btn-accept,
.klaro .cm-btn-accept {
    background-color: #c0b596 !important;
    color: #fff !important;
    border-color: #c0b596 !important;
}
.klaro .cm-btn.cm-btn-accept:hover {
    background-color: #a99c7e !important;
    border-color: #a99c7e !important;
}

/* ---- Toggle switches ---- */
.klaro .slider.round {
    background-color: #4a4a5a !important;  /* OFF state: dark gray */
}
.klaro .cm-list-input:checked + .cm-list-label .slider {
    background-color: #c0b596 !important;  /* ON state: gold */
}
/* Remove default focus ring glow in green */
.klaro .cm-list-input:focus + .cm-list-label .slider {
    box-shadow: 0 0 0 3px rgba(192,181,150,.35) !important;
}

/* ---- Links inside Klaro ---- */
.klaro a,
.klaro .cm-link,
.klaro .cm-powered-by a {
    color: #c0b596 !important;
}
.klaro a:hover,
.klaro .cm-link:hover {
    color: #fff !important;
}

/* ---- Notice bar close / learn-more ---- */
.klaro .cookie-notice .cn-learn-more {
    color: #c0b596 !important;
}

/* ---- Enabled state dot on toggle ---- */
.klaro .cm-list-input:checked + .cm-list-label .slider::before {
    background-color: #fff !important;
}

/* ---- Title & heading ---- */
.klaro .cookie-modal .cm-header h1,
.klaro .cookie-modal .cm-header h2 {
    color: #fff !important;
}
/* ---- Hide powered-by via CSS as fallback ---- */
.klaro .cm-powered-by {
    display: none !important;
}

/* ---- Banner background & border ---- */
.klaro .cookie-notice {
    border-top: 3px solid #c0b596 !important;
}

/* ---- Modal header bar ---- */
.klaro .cookie-modal .cm-modal .cm-header {
    border-bottom-color: #ececec !important;
}

/* ---- Cookie preferences re-open trigger ---- */
.cookie-settings-trigger {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a2535;
    border: 1.5px solid #b99a63;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    transition: transform .15s, box-shadow .15s;
    padding: 0;
    line-height: 1;
}
.cookie-settings-trigger:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    border-color: #d4b87a;
}