/* ============================================================
   myrealestate.express — Main Stylesheet
   Rebuilt from Zoho Sites original. Brand accurate.
   Deep Navy: #16265A | Orange: #EA7704 | Cobalt: #1E41AF
   Font: Noto Sans (matches Zoho original exactly)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #16265A;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: #EA7704; text-decoration: none; }
a:hover { text-decoration: underline; color: #c96200; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ---- Container ---- */
.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 12px;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 3px solid transparent;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* Primary = solid royal blue, used for main CTAs */
.btn-primary {
    background: #1E41AF;
    color: #ffffff;
    border-color: #1E41AF;
}
.btn-primary:hover { background: #16265A; border-color: #16265A; color: #fff; text-decoration: none; }

/* Secondary = white background, white/navy border — used on dark sections */
.btn-secondary {
    background: #ffffff;
    color: #16265A;
    border-color: #ffffff;
}
.btn-secondary:hover { background: #f0f4ff; border-color: #f0f4ff; text-decoration: none; }

/* Orange CTA */
.btn-orange {
    background: #EA7704;
    color: #ffffff;
    border-color: #EA7704;
}
.btn-orange:hover { background: #c96200; border-color: #c96200; color: #fff; text-decoration: none; }

.btn-outline {
    background: transparent;
    color: #1E41AF;
    border: 3px solid #1E41AF;
}
.btn-outline:hover { background: #1E41AF; color: #fff; text-decoration: none; }

/* White outline button for dark backgrounds */
.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

/* Arrow icon for buttons */
.btn-arrow::after {
    content: " →";
    font-weight: 700;
}

/* ---- Topbar ---- */
.site-topbar {
    background: #f5f5f5;
    color: #333;
    font-size: 0.8125rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.site-topbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}
.site-topbar .topbar-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 1rem;
    color: #333;
    font-size: 0.8125rem;
    text-decoration: none;
}
.site-topbar .topbar-item:hover { color: #EA7704; text-decoration: none; }
.site-topbar .topbar-sep {
    width: 1px;
    height: 14px;
    background: #ccc;
    flex-shrink: 0;
}
.site-topbar svg {
    width: 13px;
    height: 13px;
    fill: #555;
    flex-shrink: 0;
}

/* ---- Header / Logo bar ---- */
.site-header {
    background: #ffffff;
    padding: 1rem 0 0.5rem;
    border-bottom: none;
    text-align: center;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-logo a {
    display: inline-block;
    text-decoration: none;
}
.site-logo a:hover { text-decoration: none; }
.site-logo img {
    height: 77px;
    width: auto;
}

/* ---- Navigation ---- */
.site-nav {
    background: #ffffff;
    border-bottom: 3px solid #EA7704;
}
.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-nav ul {
    display: flex;
    gap: 0;
    justify-content: center;
}
.site-nav ul li a {
    display: block;
    padding: 0.9rem 1.4rem;
    color: #16265A;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
}
.site-nav ul li a::after {
    content: '';
    display: block;
    height: 3px;
    background: #EA7704;
    position: absolute;
    bottom: -3px;
    left: 50%;
    right: 50%;
    transition: left 0.2s, right 0.2s;
}
.site-nav ul li a:hover::after,
.site-nav ul li a.active::after {
    left: 0;
    right: 0;
}
.site-nav ul li a:hover,
.site-nav ul li a.active {
    color: #EA7704;
    text-decoration: none;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #16265A;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- Login Slideout Widget (exact replica of Zoho original) ---- */
#slideout {
    position: fixed;
    z-index: 300;
    top: 0;
    left: -16rem;
    width: 20.5rem;
    height: 100%;
    transition-duration: 0.5s;
    display: flex;
}
#slideout.tuck { left: 0; }

#panel {
    display: inline-table;
    padding: 0 0.5rem;
    box-shadow: 0 0 0.5rem #c1c1c1;
    width: 16rem;
    height: 100%;
    background: #fff;
    color: #16265A;
    font-weight: bold;
    font-size: 1.5625rem;
    line-height: 1.25;
    letter-spacing: -0.0625rem;
    text-align: center;
}
#panel > div {
    display: table-cell;
    vertical-align: middle;
}
#panel img {
    display: block;
    margin: 0 auto;
    width: 14rem;
}
#panel form {
    margin-top: 3.4375rem;
    color: #000;
    font-weight: normal;
    font-size: 0.75rem;
    letter-spacing: 0;
}
#panel label:first-child {
    display: inline-block;
    margin-right: 1.25rem;
    width: 5rem;
    font-weight: bold;
    font-size: 0.875rem;
    text-align: right;
}
#panel input[type="text"],
#panel input[type="password"] {
    margin: 0.625rem 0;
    border: 1px solid #707070;
    padding: 0.4375rem 0.625rem;
    width: 8rem;
    color: #000;
    font-family: 'Noto Sans', Arial, sans-serif;
}
#panel input[type="checkbox"] { vertical-align: sub; }
#panel input[type="checkbox"] + label {
    margin-left: 0.5rem;
    font-weight: normal;
}
#panel form div:last-of-type { text-align: center; }
#panel input[type="submit"] {
    margin: 1.6875rem auto 0;
    padding: 0.3125rem 1.25rem;
    width: auto;
    background: #364253;
    color: #fff;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans', Arial, sans-serif;
}
#panel input[type="submit"]:hover { background: #EA7704; }

#trigger {
    display: inline-block;
    position: relative;
    z-index: 31;
    box-sizing: content-box;
    margin-top: 15rem;
    padding: 0.5rem 0.5rem 0.5rem 0;
    width: 4.5rem;
    height: auto;
    overflow: hidden;
    vertical-align: top;
    cursor: pointer;
    line-height: 1.2;
    text-align: center;
    align-self: flex-start;
}
#trigger div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 0 0.35rem 0.35rem 0;
    box-shadow: 0 0 0.5rem #c1c1c1;
    padding: 0.55rem 0.45rem;
    background: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    color: #16265A;
    font-family: 'Noto Sans', Arial, sans-serif;
}
#trigger svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: #16265A;
}
#trigger img {
    display: block;
    width: 50px;
    height: auto;
}
#trigger span {
    display: block;
    margin-top: 0.25rem;
}

@media all and (max-width: 800px) {
    #trigger {
        margin-top: 8rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.5rem;
    }
}

/* ---- Page Sections ---- */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2rem 0; }
.section-lg { padding: 5rem 0; }
.section-grey { background: #F7F8FA; }
.section-white { background: #ffffff; }

/* V2.0 Loading Banner */
.v2-banner-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* Deep navy: hero, "From Invisible", ready-to-elevate */
.section-navy { background: #16265A; color: #fff; }
.section-navy h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }

/* CTA button group */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
/* Cobalt blue: "Why Choose Us" feature section */
.section-cobalt { background: rgba(30, 65, 175, 1); color: #fff; }
.section-dark { background: #16265A; color: #fff; }
.section-orange { background: #EA7704; color: #fff; }
.section-navy a, .section-cobalt a, .section-dark a, .section-orange a { color: #fff; }
.section-navy .btn-secondary, .section-cobalt .btn-secondary, .section-dark .btn-secondary, .section-orange .btn-secondary { color: #16265A; }
.section-navy h1, .section-navy h2, .section-navy h3,
.section-cobalt h1, .section-cobalt h2, .section-cobalt h3,
.section-dark h1, .section-dark h2, .section-dark h3,
.section-orange h1, .section-orange h2, .section-orange h3 { color: #fff; }

/* ---- Typography ---- */
h1 {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #16265A;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h2 {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16265A;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
h3 {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #16265A;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
h4 {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.35rem;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-orange { color: #EA7704; }
.text-navy { color: #364253; }
.text-white { color: #fff; }

/* ---- Hero Banner ---- */
.hero {
    background: #16265A;
    color: #fff;
    padding: 4.5rem 0;
    text-align: center;
}
.hero h1 { color: #fff; font-size: 2.7rem; font-weight: 800; }
.hero h3 { color: rgba(255,255,255,0.88); font-weight: 400; font-size: 1.05rem; max-width: 680px; margin: 1rem auto 0; }

/* ---- Feature Grid (4-up icons/cards) ---- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
    text-align: center;
    padding: 1.5rem 1rem;
}
/* Circular blue icon badge — exact match to Zoho original */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(30, 64, 226, 0.99);
    margin: 0 auto 1.1rem;
}
.feature-icon svg {
    width: 34px;
    height: 34px;
    fill: #ffffff;
}
.feature-card h3 { color: #16265A; font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { color: #555; font-size: 0.9rem; line-height: 1.65; }

/* ---- Product Card Grid (3-up) — exact Zoho replica ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .product-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* Product card — 3D shadow, rounded corners (Zoho: box-shadow: 0 2px 15px rgba(0,0,0,0.1)) */
.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hero image area at top of card — 350x350 on desktop */
.product-card-hero {
    position: relative;
    background: linear-gradient(135deg, #5C6BC0 0%, #3F51B5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    aspect-ratio: 1 / 1;
}
.product-card-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card body content */
.product-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
/* Heading: Zoho uses h3, color:#000000, line-height:31px */
.product-card h3 {
    color: #000000;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 31px;
}
/* Description: Zoho uses 18px */
.product-card p {
    color: #000000;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Feature list with orange circle checkmark icons — exact Zoho SVG */
.product-card ul {
    text-align: left;
    margin: 0 0 1.25rem;
    flex: 1;
}
.product-card ul li {
    padding: 0.4rem 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Orange circle checkmark icon — exact Zoho SVG path */
.product-card ul li::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23EA7704'%3E%3Cpath d='M10.2426 16.3137L6 12.071L7.41421 10.6568L10.2426 13.4853L15.8995 7.8284L17.3137 9.24262L10.2426 16.3137Z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Learn More button — Zoho: bg #3004EA / rgba(30,65,226,0.99), font 20px 700, radius 12px */
.product-card .btn-learn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    background-color: rgba(30, 65, 226, 0.99);
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}
.product-card .btn-learn:hover {
    background-color: #1E41AF;
    text-decoration: none;
}
/* Arrow icon after button text */
.product-card .btn-learn::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='white'%3E%3Cpath d='M15.0378 6.34317L13.6269 7.76069L16.8972 11.0157L3.29211 11.0293L3.29413 13.0293L16.8619 13.0157L13.6467 16.2459L15.0643 17.6568L20.7079 11.9868L15.0378 6.34317Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ---- Two-column layout ---- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
}

/* ---- Testimonials Slider ---- */
.testimonial-slider {
    position: relative;
    padding: 3rem 0 4rem;
    background: url('/assets/images/testimonial-bg.png');
    background-size: cover;
    background-position: center;
}
/* Dark overlay to tone down white speech bubbles to grey */
.testimonial-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}
.testimonial-slider > * {
    position: relative;
    z-index: 1;
}
.testimonial-slider-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Semi-transparent black card for content — 40% opacity */
.testimonial-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    position: relative;
}

.testimonial-heading {
    color: #EA7704;
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.testimonial-intro {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-container {
    overflow: hidden;
    position: relative;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.slide {
    min-width: 100%;
}
.slide h3 {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.slide > p {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.slide .attribution {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.slide .reply {
    color: #EA7704;
    font-family: 'Noto Sans', sans-serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
}


/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 2.5rem;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}
.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: #ffffff;
    border-color: #ffffff;
}

/* Slider arrows */
.slider-arrows {
    position: absolute;
    bottom: 3.5rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
}
.slider-prev, .slider-next {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #EA7704;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.slider-prev:hover, .slider-next:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .testimonial-slider-inner { padding: 0 1rem; }
    .testimonial-card { padding: 1.5rem; }
    .slider-arrows { right: 1rem; bottom: 2.5rem; }
    .testimonial-slider-inner::before,
    .testimonial-slider-inner::after { display: none; }
}

/* ---- Opt-in / CTA Strips ---- */
.cta-strip {
    background: #F7F8FA;
    border-top: 3px solid #EA7704;
    padding: 2.5rem 0;
    text-align: center;
}
.cta-strip h2 { margin-bottom: 0.5rem; color: #16265A; }
.cta-strip p { margin-bottom: 1.25rem; color: #555; }
.cta-strip .btn { margin: 0.35rem; }

/* ---- Section intro text ---- */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}
.section-intro h1, .section-intro h2 { margin-bottom: 0.75rem; }
.section-intro h3 {
    font-weight: 400;
    font-size: 1.05rem;
    color: #555;
}

/* ---- Blog Feature Section (More Resources) ---- */
.blog-feature {
    display: flex;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
}
.blog-feature-image {
    flex: 0 0 auto;
    width: 340px;
    position: relative;
}
.blog-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: none;
}
.blog-feature-content {
    flex: 1;
    background: #F2D6C4;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -60px;
    padding-left: 80px;
    border-radius: 0 8px 8px 0;
}
.blog-feature-content h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.75rem;
}
.blog-feature-content p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}
.blog-feature-content .read-more-link {
    color: #EA7704;
    text-decoration: none;
    font-weight: 500;
}
.blog-feature-content .read-more-link:hover {
    text-decoration: underline;
}
.btn-blog {
    background: #1E41AF;
    color: #fff;
    border-color: #1E41AF;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}
.btn-blog::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M4 4h4v4H4V4zm6 0h4v4h-4V4zm6 0h4v4h-4V4zM4 10h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4zM4 16h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.btn-blog:hover {
    background: #163082;
    border-color: #163082;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .blog-feature {
        flex-direction: column;
        align-items: center;
    }
    .blog-feature-image {
        width: 280px;
        margin-bottom: -40px;
        z-index: 2;
    }
    .blog-feature-content {
        margin-left: 0;
        padding-left: 2rem;
        padding-top: 60px;
        border-radius: 8px;
    }
}

/* ---- Platform Page Styles ---- */
.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}
.platform-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.platform-section-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
}

/* Platform Banner Section */
.platform-banner-section {
    display: block;
    width: 100%;
}
.platform-banner-section img {
    display: block;
    width: 100%;
    height: auto;
}

/* Features & Benefits Grid */
.features-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .features-benefits-grid { grid-template-columns: 1fr; }
}
.features-benefits-content {
    padding-left: 1rem;
}
.features-benefits-image {
    display: flex;
    align-items: flex-start;
}
.features-benefits-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
}
.features-heading {
    font-size: 1.25rem;
    color: #16265A;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}
.features-heading:first-child {
    margin-top: 0;
}
.platform-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.platform-checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
.platform-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23EA7704'%3E%3Cpath d='M10.2426 16.3137L6 12.071L7.41421 10.6568L10.2426 13.4853L15.8995 7.8284L17.3137 9.24262L10.2426 16.3137Z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Pricing Strip */
.pricing-strip {
    padding: 2.5rem 0;
}
.pricing-title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.pricing-details {
    font-size: 0.85rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
}

/* ---- Blog listing ---- */
.blog-list { display: flex; flex-direction: column; gap: 2.5rem; }
.blog-item { border-bottom: 1px solid #e8eaed; padding-bottom: 2rem; }
.blog-item h3 a { color: #364253; }
.blog-item h3 a:hover { color: #EA7704; }
.blog-meta { font-size: 0.8125rem; color: #888; margin-bottom: 0.5rem; }
.blog-meta a { color: #888; }
.blog-tags { margin-top: 0.75rem; }
.blog-tags a {
    display: inline-block;
    background: #F7F8FA;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0.15rem 0.5rem;
    font-size: 0.75rem;
    color: #555;
    margin: 0.2rem 0.2rem 0 0;
}
.blog-tags a:hover { background: #EA7704; color: #fff; border-color: #EA7704; text-decoration: none; }

/* Blog sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .blog-layout { grid-template-columns: 1fr; }
}
.blog-sidebar h4 {
    color: #EA7704;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #EA7704;
    padding-bottom: 0.35rem;
}
.blog-sidebar ul { margin-bottom: 2rem; }
.blog-sidebar ul li { padding: 0.2rem 0; font-size: 0.875rem; }
.blog-sidebar ul li a { color: #364253; }
.blog-sidebar ul li a:hover { color: #EA7704; }

/* Blog post full */
.blog-post img { margin: 1.5rem 0; border-radius: 4px; }
.blog-post h2 { margin: 1.5rem 0 0.5rem; }
.blog-post p { margin-bottom: 1.1rem; line-height: 1.75; }
.blog-post blockquote {
    border-left: 4px solid #EA7704;
    padding: 0.75rem 1.25rem;
    background: #F7F8FA;
    margin: 1.5rem 0;
    font-style: italic;
    color: #444;
}

/* ---- Footer ---- */
.site-footer {
    background: #364253;
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
}
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #EA7704; text-decoration: none; }

/* ---- Product Catalogue Page Styles ---- */

/* Promo Hero Section with Background */
.section-promo-hero {
    position: relative;
    background: url('/assets/images/catalogue/promo-bg.png') center/cover no-repeat;
    padding: 3rem 0;
}
.section-promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}
.section-promo-hero > .container {
    position: relative;
    z-index: 1;
}
.promo-hero-header {
    margin-bottom: 2rem;
}
.promo-hero-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.promo-hero-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.promo-hero-header p.small {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* Promo Grid - 3 columns */
.promo-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .promo-grid-3col { grid-template-columns: 1fr; }
}
.promo-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Dark card (for 2026 campaign) */
.promo-card-dark {
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
}
.promo-card-dark img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.promo-card-dark h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.promo-card-dark p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
}
.promo-list-dark {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}
.promo-list-dark li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.3rem;
    padding-left: 0.75rem;
    position: relative;
}
.promo-list-dark li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #EA7704;
}

/* Opt-in box (orange) */
.promo-optin-box {
    background: #EA7704;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    color: #fff;
}
.promo-optin-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.promo-optin-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

/* White cards */
.promo-card-white {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
}
.promo-card-white h4 {
    font-size: 0.95rem;
    color: #16265A;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.promo-card-white p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.75rem;
}
.promo-card-white .small-text {
    font-size: 0.8rem;
    color: #666;
}
.promo-card-white img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.btn-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* CTA Strip Orange */
.cta-strip-orange {
    background: #EA7704;
    color: #fff;
    border-top: none;
}
.cta-strip-orange h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.cta-strip-orange p {
    color: rgba(255,255,255,0.9);
}

/* Section Title with Underline */
.section-title-underline {
    font-size: 1.75rem;
    color: #16265A;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #16265A;
    display: inline-block;
}
.section-title-left {
    font-size: 1.5rem;
    color: #16265A;
    text-align: left;
    margin-bottom: 2rem;
}
.section-subtitle {
    font-size: 0.95rem;
    color: #555;
    max-width: 700px;
    margin-bottom: 2rem;
}
.section-tagline {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Category Grid - 3 cards with images and buttons */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .category-grid { grid-template-columns: 1fr; }
}
.category-card {
    text-align: center;
}
.category-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Elevate Section - Background image with overlay */
.section-elevate {
    position: relative;
    background: url('/assets/images/catalogue/elevate-bg.png') center/cover no-repeat;
}
.section-elevate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 38, 90, 0.75);
    z-index: 0;
}
.section-elevate > .container {
    position: relative;
    z-index: 1;
}
.elevate-title {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.elevate-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

/* Elevate Cards Grid - White cards */
.elevate-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 900px) {
    .elevate-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .elevate-cards-grid { grid-template-columns: 1fr; }
}
.elevate-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.elevate-card-image {
    padding: 1rem 1rem 0;
}
.elevate-card-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.elevate-card-content {
    padding: 1rem;
    text-align: center;
}
.elevate-card-content h4 {
    color: #16265A;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.elevate-card-content p {
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Guides Product Grid - 4 columns on white */
.guides-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .guides-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .guides-product-grid { grid-template-columns: 1fr; }
}
.guides-product-card {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.guides-product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.guides-product-card h4 {
    font-size: 0.95rem;
    color: #16265A;
    margin-bottom: 0.5rem;
}
.guides-product-card p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.75rem;
}

/* Explore Platform Section - White with split layout */
.explore-platform-white {
    padding: 3rem 0;
}
.explore-title-pill {
    display: inline-block;
    background: #1E41AF;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .explore-grid { grid-template-columns: 1fr; }
}
.explore-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}
.explore-content {
    padding-top: 1rem;
}
.explore-highlight-box {
    background: #EA7704;
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.explore-highlight-box p {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}
.explore-content h4 {
    font-size: 1.1rem;
    color: #16265A;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}
.explore-include-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.explore-include-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #333;
}
.explore-include-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%231E41AF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.explore-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Blog Articles Grid */
.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) {
    .blog-articles-grid { grid-template-columns: 1fr; }
}
.blog-article-card {
    text-align: left;
}
.blog-article-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.blog-article-card h4 {
    font-size: 1.1rem;
    color: #16265A;
    margin-bottom: 0.75rem;
}
.blog-article-card .subtitle {
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.5rem;
}
.blog-article-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Agent Product Grid - 4 columns on navy */
.agent-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .agent-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .agent-product-grid { grid-template-columns: 1fr; }
}
.agent-product-card {
    text-align: center;
}
.agent-product-card img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.agent-product-card h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.agent-product-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

/* Purple section for Agent Marketing - with background image */
.section-purple {
    position: relative;
    background: url('/assets/images/catalogue/agent-marketing-bg.png') center/cover no-repeat;
    color: #fff;
}
.section-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(91, 77, 199, 0.85);
    z-index: 0;
}
.section-purple > .container {
    position: relative;
    z-index: 1;
}
.section-purple h2 {
    color: #fff;
}

/* Agent Marketing Grid - White Cards on Purple */
.agent-marketing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
@media (max-width: 900px) {
    .agent-marketing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .agent-marketing-grid { grid-template-columns: 1fr; }
}
.agent-marketing-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.agent-marketing-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.agent-marketing-card h4 {
    color: #16265A;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.agent-marketing-card p {
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Button small variant */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* ---- Supporting Services Page Styles ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .services-grid { grid-template-columns: 1fr; }
}
.service-card {
    text-align: center;
    padding: 1rem;
}
.service-card h4 {
    font-size: 1rem;
    color: #16265A;
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}
/* Service Icon Outline Style (orange) */
.service-icon-outline {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    background: transparent;
}
.service-icon-outline svg {
    width: 32px;
    height: 32px;
}
.service-icon-outline-orange {
    border-color: #EA7704;
}
.service-icon-outline-orange svg {
    fill: #EA7704;
}

/* Services Banner - Full Width Image */
.services-banner-image-full {
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.services-banner-image-full img {
    width: 100%;
    max-width: 1110px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Full Width Banner Image (constrained) */
.full-width-banner {
    width: 100%;
    max-width: 1110px;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
}

/* Christmas Services Grid */
.christmas-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .christmas-services-grid { grid-template-columns: 1fr; }
}
.christmas-services-image img {
    width: 100%;
    height: auto;
}
.christmas-services-content h3 {
    font-size: 1.25rem;
    color: #16265A;
    margin-bottom: 1rem;
}
.christmas-services-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Services List Grid */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}
@media (max-width: 768px) {
    .services-list-grid { grid-template-columns: 1fr; }
}
.services-list-column p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
}
.services-list-column p strong {
    color: #16265A;
}

/* Services Contact Grid */
.services-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .services-contact-grid { grid-template-columns: 1fr; }
}
.services-contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.services-contact-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* ---- Getting Started Page Styles ---- */
.getting-started-step {
    margin-bottom: 2.5rem;
}
.getting-started-step h3 {
    font-size: 1.1rem;
    color: #16265A;
    margin-bottom: 0.75rem;
}
.getting-started-step p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon svg {
    width: 28px;
    height: 28px;
}
.step-icon-orange {
    background: #EA7704;
}
.step-icon-orange svg {
    fill: #fff;
}
.step-icon-blue {
    background: #16265A;
}
.step-icon-blue svg {
    fill: #fff;
}

/* ---- Contact Page Styles ---- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
    text-align: center;
    padding: 1.5rem;
}
.contact-card h3 {
    font-size: 1.25rem;
    color: #16265A;
    margin-bottom: 0.75rem;
}
.contact-card h4 {
    font-size: 1rem;
    color: #16265A;
    margin: 1rem 0 0.5rem;
}
.contact-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.contact-card a {
    color: #1E41AF;
}
.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg {
    width: 32px;
    height: 32px;
}
.contact-icon-orange svg {
    fill: #EA7704;
}
.contact-icon-blue svg {
    fill: #1E41AF;
}
.contact-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1.5rem 0;
}

/* Social Icons Large */
.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icons-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #16265A;
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s;
}
.social-icons-large a:hover {
    background: #1E41AF;
}
.social-icons-large svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Footer top: two logos + social */
.footer-top {
    background: #ffffff;
    padding: 1.75rem 0 1.25rem;
    text-align: center;
}
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.footer-logos img {
    max-width: 600px;
    width: 100%;
    height: auto;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #bbb;
    border-radius: 6px;
    color: #555;
    transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #EA7704; color: #EA7704; text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* Footer middle: legal text */
.footer-mid {
    background: #364253;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8125rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-mid p { margin-bottom: 0.2rem; }

/* Footer bottom: Helpful Links 3-col */
.footer-links-section {
    background: #364253;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-links-heading {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: 'Noto Sans', Arial, sans-serif;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .footer-cols { grid-template-columns: 1fr; max-width: 260px; }
}
.footer-col h4 {
    color: #EA7704;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-family: 'Noto Sans', Arial, sans-serif;
}
.footer-col ul li {
    margin-bottom: 0.3rem;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    line-height: 1.5;
}
.footer-col ul li a:hover { color: #EA7704; text-decoration: none; }

.footer-legal {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    background: #2b3344;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---- Admin icon (bottom-right homepage) ---- */
#admin-access {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 999;
    opacity: 0.15;
    transition: opacity 0.3s;
}
#admin-access:hover { opacity: 0.6; }
#admin-access a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #16265A;
    border-radius: 50%;
    color: #fff;
}
#admin-access svg { width: 14px; height: 14px; fill: #fff; }

/* ========================================
   PRODUCT DETAIL PAGES (Magnets, etc.)
   ======================================== */

/* Magenta/Pink section (used on magnets hero) */
.section-magenta {
    background: rgba(227, 29, 147, 0.94);
    color: #fff;
    padding: 3rem 0;
}
.section-magenta h1, .section-magenta h2, .section-magenta h3 {
    color: #fff;
}

/* Peach section */
.section-peach {
    background: rgba(234, 119, 4, 0.39);
    padding: 2rem 0;
}

/* Product features grid (4 col icons) */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 900px) {
    .product-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .product-features-grid { grid-template-columns: 1fr; }
}

.product-feature-card {
    text-align: center;
}
.product-feature-card h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem;
    color: #000;
}
.product-feature-card p {
    color: #333;
}

/* Feature icon circles */
.feature-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.feature-icon-circle svg {
    width: 32px;
    height: 32px;
}
.feature-icon-magenta {
    background: rgba(227, 29, 147, 0.94);
}
.feature-icon-blue {
    background: #00598e;
}

/* Purple hero section */
.section-purple-hero {
    background: rgb(48, 4, 234);
    color: #fff;
    padding: 3rem 0;
}
.section-purple-hero h1, .section-purple-hero h2, .section-purple-hero h3 {
    color: #fff;
}

/* Button link style */
.btn-link {
    color: rgba(0,0,0,0.65);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    margin-top: 0.5rem;
}
.btn-link:hover { color: #1E41AF; text-decoration: none; }

/* Green hero section (for magazines) */
.section-green {
    background: rgba(73, 172, 60, 0.94);
    color: #fff;
    padding: 3rem 0;
}
.section-green h1, .section-green h2, .section-green h3 {
    color: #fff;
}
.feature-icon-green {
    background: #8CD147;
}

/* Light green section */
.section-lightgreen {
    background: rgba(178, 234, 121, 0.3);
    padding: 2rem 0;
}

/* Green blog feature box */
.blog-feature-box-green {
    background: rgba(178, 234, 121, 1);
    padding: 1.5rem;
    border-radius: 0;
}
.blog-feature-box-green h2, .blog-feature-box-green h5 {
    text-align: left;
}

/* Lavender/Purple hero section (for letterbox drops) */
.section-lavender {
    background: rgba(121, 95, 174, 1);
    color: #fff;
    padding: 3rem 0;
}
.section-lavender h1, .section-lavender h2, .section-lavender h3 {
    color: #fff;
}
.feature-icon-purple {
    background: #9B59B6;
}

/* Orange hero section (for christmas cards) */
.section-orange {
    background: rgba(234, 119, 4, 1);
    color: #fff;
    padding: 3rem 0;
}
.section-orange h1, .section-orange h2, .section-orange h3 {
    color: #fff;
}
.feature-icon-orange {
    background: #EA7704;
}

/* Orange button */
.btn-orange {
    background: #EA7704;
    color: #fff;
    border: 2px solid #EA7704;
}
.btn-orange:hover {
    background: #d06b00;
    border-color: #d06b00;
    color: #fff;
}

/* Christmas card gallery */
.christmas-card-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.christmas-card-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.christmas-card-item img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .christmas-card-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .christmas-card-gallery {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   BLOG LISTING STYLES
   ========================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}
.blog-card-content h3 a {
    color: #16265A;
    text-decoration: none;
}
.blog-card-content h3 a:hover {
    color: #1E41E2;
}
.blog-card-content p {
    flex: 1;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.blog-date {
    color: #888;
    font-size: 0.85rem;
}
.blog-tags {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}
.blog-tags span {
    font-weight: 600;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Blog categories section */
.blog-categories-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.blog-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 768px) {
    .blog-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .blog-categories-grid {
        grid-template-columns: 1fr;
    }
}
.blog-category-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #16265A;
    transition: all 0.3s ease;
}
.blog-category-card:hover {
    background: #1E41E2;
    color: #fff;
}
.blog-category-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}
.blog-category-card span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Yellow/Gold hero section (for property guides) */
.section-yellow {
    background: rgba(234, 234, 4, 1);
    color: #000;
    padding: 3rem 0;
}
.section-yellow h1, .section-yellow h2, .section-yellow h3 {
    color: #000;
}

/* Product split grid (image left, content right) */
.product-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .product-split-grid { grid-template-columns: 1fr; }
}
.product-split-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.product-split-content h3 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 0.75rem;
}
.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-feature-list li {
    font-size: 18px;
    padding: 0.25rem 0;
    color: #333;
}

/* Purple button */
.btn-purple {
    background: rgba(48, 4, 234, 1);
    color: #fff;
    border-color: rgba(48, 4, 234, 1);
    border-radius: 12px;
}
.btn-purple:hover { background: #2803b5; border-color: #2803b5; color: #fff; text-decoration: none; }

/* Purple outline button */
.btn-purple-outline {
    background: transparent;
    color: rgba(48, 4, 234, 1);
    border: 2px solid rgba(48, 4, 234, 1);
    border-radius: 12px;
}
.btn-purple-outline:hover { background: rgba(48, 4, 234, 1); color: #fff; text-decoration: none; }

/* White button (for dark backgrounds) */
.btn-white {
    background: #fff;
    color: #3004EA;
    border-color: #fff;
    border-radius: 12px;
}
.btn-white:hover { background: #f0f0f0; border-color: #f0f0f0; color: #3004EA; text-decoration: none; }

/* Button sizes */
.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

/* Blog feature grid (image left, content right with orange box) */
.blog-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .blog-feature-grid { grid-template-columns: 1fr; }
}
.blog-feature-image img {
    width: 100%;
    max-width: 500px;
}
.blog-feature-box {
    background: rgba(234, 119, 4, 0.39);
    padding: 1.5rem;
    border-radius: 0;
}
.blog-feature-box h2, .blog-feature-box h5 {
    text-align: left;
}
.blog-feature-box h5 {
    font-weight: 400;
    line-height: 1.6;
}

/* Product cards row (3 col with shadow) */
.product-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 900px) {
    .product-cards-row { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

.product-card-shadow {
    background: #fff;
    box-shadow: 8px 23px 38px -9px #000000;
    border-radius: 0;
    overflow: hidden;
}
.product-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card-content {
    padding: 1rem;
    text-align: left;
}
.product-card-content h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.5rem;
}
.product-card-content p {
    color: #000;
    margin-bottom: 0.75rem;
}

/* Product tick list (orange checkmarks) */
.product-tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-tick-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: #000;
}
.product-tick-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23EA7704' d='M10.2426 16.3137L6 12.071L7.41421 10.6568L10.2426 13.4853L15.8995 7.8284L17.3137 9.24262L10.2426 16.3137Z'/%3E%3Cpath fill='%23EA7704' fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Product image with shadow */
.product-image-shadow {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== MAGAZINES PAGE - Features/Benefits Layout ===== */
.section-title-large {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle-large {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 1rem;
}
.hero-subtitle-white {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
}
.divider-green {
    max-width: 100%;
    margin: 2rem auto;
    border: none;
    border-top: 2px solid #8CD147;
}

/* Features/Benefits side-by-side layout */
.features-benefits-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}
.features-benefits-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.features-benefits-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.features-column h3,
.benefits-column h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #16265A;
}
.features-column p,
.benefits-column p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #333;
}

@media (max-width: 992px) {
    .features-benefits-layout {
        grid-template-columns: 1fr;
    }
    .features-benefits-image {
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .features-benefits-columns {
        grid-template-columns: 1fr;
    }
    .section-title-large {
        font-size: 32px;
    }
    .section-subtitle-large {
        font-size: 16px;
    }
}

/* Publish Weekly showcase image */
.section-subtitle-text {
    font-size: 18px;
    color: #333;
    margin: 0.25rem auto;
    max-width: 700px;
}
.publish-showcase-image {
    max-width: 700px;
    margin: 2rem auto;
}
.publish-showcase-image img {
    width: 100%;
    height: auto;
}

/* Blog Magazine Section */
.blog-section-title {
    text-align: left;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.blog-magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.blog-magazine-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}
.blog-green-box {
    background: #c8f7a0;
    padding: 2rem;
}
.blog-green-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 1rem;
}
.blog-green-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
.blog-green-box a {
    color: #3004EA;
    text-decoration: none;
}
.blog-green-box a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .blog-magazine-grid {
        grid-template-columns: 1fr;
    }
    .blog-magazine-image {
        text-align: center;
    }
}

/* Product Features Split Layout (Image Left, Text Right Stacked) */
.product-features-split {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}
.product-features-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.product-features-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.75rem;
}
.product-features-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0.4rem;
}
@media (max-width: 900px) {
    .product-features-split {
        grid-template-columns: 1fr;
    }
    .product-features-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== CHRISTMAS CARDS PAGE ===== */
/* Card Gallery Grid */
.card-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.card-gallery-item {
    background: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.card-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}
.card-gallery-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.25rem;
}
.card-gallery-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Christmas Tabs */
.christmas-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
}
.christmas-tab {
    background: #3004EA;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.christmas-tab:hover {
    background: #16265A;
}
.christmas-tab.active {
    background: #16265A;
}

.christmas-tab-content {
    display: none;
    padding: 1rem 0;
}
.christmas-tab-content.active {
    display: block;
}
.christmas-tab-content p {
    margin-bottom: 0.75rem;
}
.christmas-tab-content a {
    color: #3004EA;
}

/* Smaller 4-wide gallery for tab content */
.christmas-tab-content .card-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.christmas-tab-content .card-gallery-item {
    padding: 0.75rem;
}
.christmas-tab-content .card-gallery-item img {
    height: 180px;
    margin-bottom: 0.5rem;
}
.christmas-tab-content .card-gallery-item h4 {
    font-size: 12px;
}
.christmas-tab-content .card-gallery-item p {
    font-size: 10px;
}

/* Gift Items Grid */
.gift-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.gift-item {
    background: #f9f9f9;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
}
.gift-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 0.75rem;
}
.gift-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.25rem;
}
.gift-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .card-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .christmas-tab-content .card-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gift-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .card-gallery-grid {
        grid-template-columns: 1fr;
    }
    .christmas-tab-content .card-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .christmas-tabs {
        flex-direction: column;
        align-items: center;
    }
    .christmas-tab {
        width: 100%;
        max-width: 300px;
    }
    .gift-items-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG LAYOUT ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.blog-main {
    min-width: 0;
}
.blog-section-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

/* Blog Post Card */
.blog-post-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
.blog-post-card:last-child {
    border-bottom: none;
}
.blog-post-image {
    margin-bottom: 1rem;
}
.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.blog-post-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.blog-post-content h3 a {
    color: #16265A;
    text-decoration: none;
}
.blog-post-content h3 a:hover {
    color: #3004EA;
}
.blog-post-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 0.75rem;
}
.blog-post-meta .separator {
    margin: 0 0.5rem;
}
.blog-post-meta .read-time {
    float: right;
}
.blog-category-link {
    display: inline-block;
    font-size: 12px;
    color: #3004EA;
    text-decoration: none;
}
.blog-category-link:hover {
    text-decoration: underline;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}
.sidebar-promo-box {
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.sidebar-promo-orange {
    background: #EA7704;
    color: #fff;
}
.sidebar-promo-cobalt {
    background: #3004EA;
    color: #fff;
}
.sidebar-promo-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}
.sidebar-promo-box p {
    font-size: 14px;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.sidebar-promo-box .btn-white {
    background: #fff;
    color: #16265A;
    border: none;
    font-size: 12px;
    padding: 0.5rem 1.5rem;
}
.sidebar-promo-box .btn-white:hover {
    background: #f0f0f0;
}

.sidebar-featured {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}
.sidebar-featured h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}
.sidebar-featured ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-featured li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    line-height: 1.4;
}
.sidebar-featured li:last-child {
    border-bottom: none;
}
.sidebar-featured li::before {
    content: '▸';
    color: #EA7704;
    margin-right: 0.5rem;
}
.sidebar-featured a {
    color: #333;
    text-decoration: none;
}
.sidebar-featured a:hover {
    color: #3004EA;
}

/* Blog Article Page */
.blog-article h1 {
    font-size: 28px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.blog-article-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 1.5rem;
}
.blog-article-meta a {
    color: #3004EA;
}
.blog-article-meta .separator {
    margin: 0 0.5rem;
}
.blog-article-meta .read-time {
    float: right;
}
.blog-article-image {
    margin-bottom: 1.5rem;
}
.blog-article-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.blog-article-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.blog-article-content .lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.blog-article-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #16265A;
    margin: 2rem 0 1rem;
}
.blog-article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #16265A;
    margin: 1.5rem 0 0.75rem;
}
.blog-article-content p {
    margin-bottom: 1rem;
}
.blog-article-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}
.blog-article-content li {
    margin-bottom: 0.5rem;
}
.blog-article-content a {
    color: #3004EA;
}
.blog-article-content a:hover {
    text-decoration: underline;
}
.blog-article-content a.btn {
    color: #ffffff;
}
.blog-article-content a.btn:hover {
    text-decoration: none;
}
.blog-article-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 13px;
}
.blog-article-tags span {
    font-weight: 600;
    color: #333;
}
.blog-article-tags a {
    color: #3004EA;
    text-decoration: none;
}
.blog-article-tags a:hover {
    text-decoration: underline;
}

.blog-article-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.blog-article-categories {
    margin-top: 1rem;
    font-size: 13px;
}
.blog-article-categories span {
    font-weight: 600;
    color: #333;
}
.blog-article-categories a {
    color: #3004EA;
    text-decoration: none;
}
.blog-article-categories a:hover {
    text-decoration: underline;
}

/* Blog Read More Section */
.blog-read-more {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}
.blog-read-more h2 {
    font-size: 20px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 1.5rem;
}
.read-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.read-more-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}
.read-more-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.read-more-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.read-more-card a {
    color: #3004EA;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}
.read-more-card a:hover {
    text-decoration: underline;
}
.blog-read-more a.btn {
    color: #ffffff;
}
.blog-read-more a.btn:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .read-more-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Search */
.sidebar-search {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.sidebar-search h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1rem;
}
.sidebar-search form {
    display: flex;
}
.sidebar-search input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 13px;
}
.sidebar-search button {
    background: #16265A;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}
.sidebar-search button:hover {
    background: #0f1a3d;
}

/* Sidebar Connect */
.sidebar-connect {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.sidebar-connect h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1rem;
}
.sidebar-connect .social-icons {
    display: flex;
    gap: 1rem;
}
.sidebar-connect .social-icons a {
    color: #333;
}
.sidebar-connect .social-icons a:hover {
    color: #3004EA;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 2rem;
    text-align: center;
}
.btn-outline {
    background: transparent;
    border: 2px solid #16265A;
    color: #16265A;
    padding: 0.5rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}
.btn-outline:hover {
    background: #16265A;
    color: #fff;
}

/* Blog RSS Subscribe */
.blog-rss-subscribe {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}
.blog-rss-subscribe a {
    color: #3004EA;
    text-decoration: none;
    font-size: 14px;
}
.blog-rss-subscribe a:hover {
    text-decoration: underline;
}

/* Blog Categories Footer */
.blog-categories-footer {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
}
.blog-categories-footer h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}
.blog-categories-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.5rem;
}
.blog-categories-footer li {
    font-size: 14px;
}
.blog-categories-footer li a {
    color: #3004EA;
    text-decoration: none;
}
.blog-categories-footer li a:hover {
    text-decoration: underline;
}
.blog-categories-footer li span {
    color: #888;
    font-size: 12px;
}

/* Blog Tags Footer */
.blog-tags-footer {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
}
.blog-tags-footer h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tags-cloud a {
    background: #f5f5f5;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
}
.tags-cloud a:hover {
    background: #EA7704;
    color: #fff;
}

/* Blog Category Page */
.blog-category-title {
    font-size: 28px;
    font-weight: 700;
    color: #16265A;
    margin-bottom: 0.5rem;
}
.blog-category-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .sidebar-featured {
        grid-column: span 2;
    }
}
@media (max-width: 600px) {
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    .sidebar-featured {
        grid-column: span 1;
    }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.25rem; }
    .hero h1 { font-size: 1.8rem; }
    .site-nav ul { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 100; }
    .site-nav ul.open { display: flex; }
    .site-nav { position: relative; }
    .nav-toggle { display: flex; margin-left: auto; }
    .site-header .container { flex-wrap: wrap; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .site-topbar .container { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
}
