/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #0a1628;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Top bar: logo + utility buttons */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-logo img {
    height: 66px;
    width: auto;
}

/* Utility buttons (search, enquiry, language) */
.header-utils {
    display: flex;
    align-items: center;
    gap: 8px;
}
.util-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    color: #555;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    position: relative;
}
.util-btn:hover {
    border-color: #8B0000;
    color: #8B0000;
    background: rgba(139, 0, 0, 0.04);
}
.util-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Search box */
.search-wrapper {
    position: relative;
}
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    padding: 16px;
    min-width: 320px;
    z-index: 100;
}
.search-dropdown.active {
    display: block;
}
.search-dropdown input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.search-dropdown input:focus {
    border-color: #8B0000;
}
.search-results {
    margin-top: 10px;
    max-height: 240px;
    overflow-y: auto;
}
.search-results a {
    display: block;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: #333;
    border-radius: 6px;
    transition: background 0.15s;
}
.search-results a:hover {
    background: #f0f0f0;
    color: #8B0000;
}
.search-results .no-results {
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #999;
}

/* Language button text */
.lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: auto;
    padding: 0 12px;
}

/* Log in button */
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    width: auto !important;
    padding: 8px 20px !important;
    height: auto !important;
    background: #8B0000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.login-btn:hover {
    background: #a00000 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(139, 0, 0, 0.4);
    transform: translateY(-1px);
}

/* Navigation bar (row 2) */
.header-nav-bar {
    background: #0a1628;
    padding: 0 40px;
    position: relative;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.header-nav > a,
.header-nav > .nav-dropdown > .nav-parent {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.header-nav > a:hover,
.header-nav > .nav-dropdown:hover > .nav-parent {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.header-nav > a.active {
    color: #fff;
    background: rgba(139, 0, 0, 0.6);
}
.header-nav .nav-cta {
    background: #8B0000 !important;
    color: #fff !important;
    border-radius: 4px;
    margin-left: 8px;
}
.header-nav .nav-cta:hover {
    background: #a00000 !important;
}

/* Products dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.2s;
}
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 100;
    flex-direction: column;
}
.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
}
.nav-dropdown-menu a {
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}
.nav-dropdown-menu a:last-child {
    border-bottom: none;
}
.nav-dropdown-menu a:hover {
    background: #8B0000;
    color: #fff;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 180px 40px 80px;
    background: url('/lex4lexprivate/bg-hero.jpg') center center / cover no-repeat;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}
.page-hero h1 { display: none; }
.page-hero .hero-logo-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: none;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    border-radius: 12px;
}
.page-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal pages hero override */
.legal-hero {
    justify-content: center;
}
.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.legal-hero .page-hero-content {
    padding-top: 0;
}
.legal-hero h1 {
    display: block !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 0;
    letter-spacing: 2px;
}

/* Merged challenge block inside hero */
.challenge-merged {
    margin-top: 40px;
    padding: 32px 36px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.challenge-merged h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.challenge-merged p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}
.challenge-merged ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.challenge-merged ul li {
    font-size: 0.92rem;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.challenge-merged ul li:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION (index) ===== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 40px 80px;
    background: url('/lex4lexprivate/bg-hero.jpg') center center / cover no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.2) 30%,
        rgba(10, 22, 40, 0.35) 60%,
        rgba(10, 22, 40, 0.7) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}
.hero-product-logo {
    margin-bottom: 24px;
}
.hero-product-logo img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
    border-radius: 0;
    margin-bottom: 16px;
    position: absolute;
    top: 50px;
    left: 50%;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    white-space: nowrap;
    transform: translateX(-50%);
}
.hero-badge::before {
    content: '';
}
.hero h1 { display: none; }
.hero-logo-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
    margin-bottom: 0;
}
.hero-tagline {
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 14px;
    font-style: italic;
}
.hero-subtitle {
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8B0000;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-cta:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}
.hero-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===== MAROON BANNER ===== */
.maroon-banner {
    background: #8B0000;
    padding: 16px 40px;
    text-align: center;
}
.maroon-banner p {
    color: #fff;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== TWO-COLUMN SECTION ===== */
.two-col-section {
    position: relative;
    background: url('/lex4lexprivate/bg-hero.jpg') center center / cover no-repeat fixed;
    padding: 80px 40px;
}
.two-col-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.82);
}
.two-col-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
}
.col-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.col-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 16px;
    line-height: 1.2;
}
.col-card-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.col-card .intro-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}
.col-card ul {
    list-style: none;
    padding: 0;
}
.col-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
.col-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #8B0000;
    border-radius: 50%;
}
.col-card ul li strong {
    color: #1a1a1a;
}

/* ===== ADVANTAGE SECTION ===== */
.footnote {
    font-size: 0.8rem;
}
.advantage-section {
    background: #f8f6f3;
    padding: 80px 40px;
}
.advantage-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.advantage-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #8B0000;
    text-align: center;
    margin-bottom: 12px;
}
.advantage-inner .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.advantage-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.advantage-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    width: 100%;
    max-width: 1200px;
}
.advantage-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    border-left: 4px solid #8B0000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 360px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.advantage-card-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.advantage-card p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
}

/* ===== SHADOW AI SECTION ===== */
.shadow-ai-section {
    background: #8B0000;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.glance-ai-section {
    background: #f5f5f5;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.glance-ai-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 16px;
}
.shadow-ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.shadow-ai-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.shadow-ai-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.shadow-ai-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.video-embed {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== ENQUIRY / CONTACT FORM ===== */
.enquiry-section, .contact-section {
    background: #fff;
    padding: 80px 40px;
}
.enquiry-inner, .contact-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.enquiry-inner h2, .contact-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.enquiry-inner .section-subtitle, .contact-inner .section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.enquiry-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B0000;
    background: #fff;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-submit {
    background: #8B0000;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}
.form-submit:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

/* ===== CONTENT SECTION (generic) ===== */
.content-section {
    background: #fff;
    padding: 80px 40px;
}
.content-inner {
    max-width: 900px;
    margin: 0 auto;
}
.content-inner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 20px;
}
.content-inner h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 12px;
}
.content-inner p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.content-inner ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.content-inner ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}
.content-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #8B0000;
    border-radius: 50%;
}
.content-inner ul li strong {
    color: #1a1a1a;
}

/* ===== PRODUCT CARDS ===== */
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.product-card {
    display: block;
    background: #f8f6f3;
    border-radius: 12px;
    padding: 32px 28px;
    border-left: 4px solid #8B0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.product-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 12px;
}
.product-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}
.product-card-link {
    display: inline-block;
    color: #8B0000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: #f8f6f3;
    padding: 80px 40px;
}
.pricing-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.pricing-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 12px;
}
.pricing-inner .section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 50px;
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
    border-top: 4px solid #8B0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.pricing-card.featured {
    border-top: 4px solid #c9a84c;
    transform: scale(1.03);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}
.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #8B0000;
    margin: 16px 0 8px;
}
.pricing-card .price-note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 24px;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}
.pricing-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.93rem;
    color: #444;
    line-height: 1.5;
}
.pricing-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #8B0000;
    font-weight: 700;
}
.pricing-card .pricing-cta {
    display: inline-block;
    background: #8B0000;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.pricing-card .pricing-cta:hover {
    background: #a00000;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a1628;
    color: rgba(255,255,255,0.6);
    padding: 40px;
    text-align: center;
    font-size: 0.85rem;
}
.footer a {
    color: rgba(255,255,255,0.8);
}
.footer a:hover {
    color: #c9a84c;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: #fff;
    padding: 80px 40px;
}
.blog-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.blog-inner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 20px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.blog-card {
    display: block;
    background: #f8f6f3;
    border-radius: 12px;
    padding: 0;
    border-left: 4px solid #8B0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 24px 24px 20px;
}
.blog-card .blog-date {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}
.blog-card .blog-link {
    color: #8B0000;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}
.blog-card .blog-link:hover {
    color: #a00000;
}

/* ===== LEGAL CONTENT (Privacy/Terms) ===== */
.legal-section {
    background: #fff;
    padding: 80px 40px;
}
.legal-inner {
    max-width: 900px;
    margin: 0 auto;
}
.legal-inner h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B0000;
    margin: 36px 0 16px;
}
.legal-inner h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0 10px;
}
.legal-inner p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}
.legal-inner ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-inner ul li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}
.legal-inner .effective-date {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ===== BLOG POST PAGE ===== */
.blog-post-section {
    background: #f8f6f3;
    padding: 80px 40px;
}
.blog-post-inner {
    max-width: 800px;
    margin: 0 auto;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.blog-post-date {
    font-size: 0.9rem;
    color: #8B0000;
    font-weight: 700;
}
.blog-post-tags {
    font-size: 0.8rem;
    color: #888;
}
.blog-post-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}
.blog-post-body {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.blog-post-body p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}
.blog-post-body p strong {
    color: #1a1a1a;
}
.blog-post-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin: 30px 0;
}
.blog-post-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.blog-post-gallery img:hover {
    transform: scale(1.02);
}
.blog-post-gallery.single {
    grid-template-columns: 1fr;
}
.blog-post-gallery.single img {
    max-height: 500px;
    object-fit: contain;
}
.blog-post-hashtags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #8B0000;
    font-weight: 600;
}

/* Blog post navigation (prev/next) */
.blog-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.blog-post-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f6f3;
    border-radius: 8px;
    color: #8B0000;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1.5px solid transparent;
}
.blog-post-nav a:hover {
    background: #fff;
    border-color: #8B0000;
}
.blog-post-nav a.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B0000;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: gap 0.2s ease;
}
.blog-back-link:hover {
    gap: 12px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .two-col-inner {
        grid-template-columns: 1fr;
    }
    .header-top {
        padding: 8px 16px;
    }
    .header-nav-bar {
        padding: 0 16px;
        overflow-x: auto;
    }
    .hero, .page-hero {
        padding: 100px 20px 60px;
    }
    .two-col-section,
    .advantage-section,
    .shadow-ai-section,
    .enquiry-section,
    .contact-section,
    .content-section,
    .pricing-section {
        padding: 60px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .advantage-row {
        flex-wrap: wrap;
    }
    .advantage-card {
        min-width: 260px;
    }
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    .search-dropdown {
        min-width: 260px;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .header-nav > a,
    .header-nav > .nav-dropdown > .nav-parent {
        font-size: 0.78rem;
        padding: 10px 10px;
    }
    .util-btn {
        width: 34px;
        height: 34px;
    }
    .lang-btn {
        padding: 0 8px;
        font-size: 0.7rem;
    }
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.popup-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.popup-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.popup-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.popup-close {
    background: #8B0000;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.popup-close:hover {
    background: #a50000;
}

/* Legal content links */
.legal-inner a {
    color: #8B0000;
    text-decoration: underline;
    font-weight: 600;
}
.legal-inner a:hover {
    color: #a50000;
}
