/* Master SEO Landing Pages — Hari Kisna Realty Real Estate Broker Ahmedabad */

.master-seo-page .hk-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* §1 Hero */
.mse-hero {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}
.mse-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 73, 103, 0.88) 0%, rgba(47, 128, 148, 0.75) 100%);
}
.mse-hero .container { position: relative; z-index: 2; }
.mse-hero-content { max-width: 820px; color: #fff; }
.mse-hero-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    margin: 16px 0;
    color: #fff;
}
.mse-hero-sub {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 28px;
    line-height: 1.6;
}
.mse-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hk-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}
.hk-btn-outline-light:hover {
    background: #fff;
    color: var(--secondary, #284967);
}

/* §2 Trust Bar */
.mse-trust-bar {
    background: var(--secondary, #284967);
    padding: 28px 0;
    color: #fff;
}
.mse-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    text-align: center;
}
.mse-trust-item i {
    font-size: 28px;
    color: var(--gold-light, #F2C94C);
    display: block;
    margin-bottom: 8px;
}
.mse-trust-item strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
}
.mse-trust-item span {
    font-size: 13px;
    opacity: 0.9;
}

/* Sections */
.mse-section { padding: 64px 0; }
.mse-section-alt { background: var(--brand-light, #F4FAFB); }
.mse-section-dark {
    background: linear-gradient(135deg, var(--secondary, #284967), #1a3348);
    color: #fff;
}
.mse-section-dark h2,
.mse-section-dark h3 { color: #fff; }
.mse-section-dark p { color: rgba(255, 255, 255, 0.9); }
.mse-intro {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text, #333);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Search */
.mse-search-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 24px;
    max-width: 960px;
    margin: 0 auto;
}

/* Content blocks */
.mse-content-block h2 {
    font-size: 28px;
    color: var(--secondary, #284967);
    margin-bottom: 20px;
}
.mse-content-block h3 {
    font-size: 20px;
    color: var(--primary, #2F8094);
    margin: 28px 0 12px;
}
.mse-content-block p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}
.mse-cta-inline {
    background: var(--brand-light, #F4FAFB);
    border-left: 4px solid var(--gold, #C9941A);
    padding: 16px 20px;
    margin-top: 24px;
    border-radius: 0 8px 8px 0;
}
.mse-cta-inline a { font-weight: 600; }

/* Infographic */
.mse-infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 28px 0 36px;
}
.mse-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
}
.mse-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-light, #F2C94C);
}
.mse-stat-label {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 6px;
    display: block;
}

/* Location cards */
.mse-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.mse-location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.mse-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.mse-location-img { position: relative; height: 180px; overflow: hidden; }
.mse-location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mse-location-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(40, 73, 103, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.mse-location-body {
    padding: 16px 20px 20px;
}
.mse-location-body h3 {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--secondary, #284967);
}

/* Property types */
.mse-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.mse-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0eaee;
    text-decoration: none;
    color: var(--secondary, #284967);
    font-weight: 600;
    transition: all 0.25s;
}
.mse-type-card:hover {
    border-color: var(--primary, #2F8094);
    background: var(--brand-light, #F4FAFB);
    text-decoration: none;
    color: var(--primary, #2F8094);
    transform: translateY(-3px);
}
.mse-type-card i {
    font-size: 32px;
    color: var(--primary, #2F8094);
}

/* Projects */
.mse-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.mse-project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.mse-project-img { height: 200px; overflow: hidden; }
.mse-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mse-project-body { padding: 20px; }
.mse-project-body h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--secondary, #284967);
}
.mse-project-loc { color: #666; font-size: 14px; margin-bottom: 8px; }
.mse-project-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary, #2F8094);
    margin-bottom: 4px;
}
.mse-project-config { font-size: 14px; color: #888; margin-bottom: 16px; }
.mse-project-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Testimonials */
.mse-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.mse-testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--gold, #C9941A);
}
.mse-review-badge {
    display: inline-block;
    background: var(--brand-light, #F4FAFB);
    color: var(--primary, #2F8094);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.mse-testimonial .stars { color: var(--gold, #C9941A); margin-bottom: 12px; }
.mse-testimonial .stars small { color: #999; margin-left: 6px; }
.mse-testimonial .quote {
    font-style: italic;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}
.mse-testimonial .author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mse-testimonial .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary, #2F8094);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* WhatsApp CTA */
.mse-whatsapp-cta {
    background: #25D366;
    padding: 48px 0;
    color: #fff;
}
.mse-whatsapp-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.mse-whatsapp-icon {
    font-size: 56px;
    opacity: 0.9;
}
.mse-whatsapp-inner h2 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 28px;
}
.mse-whatsapp-inner p { margin: 0; opacity: 0.95; }

/* Form */
.mse-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.mse-form-benefits {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0eaee;
}
.mse-form-benefits ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.mse-form-benefits li {
    padding: 6px 0;
    color: #555;
}
.mse-form-benefits li i { color: var(--primary, #2F8094); margin-right: 8px; }
.mse-form-alt {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}

/* FAQ */
.mse-faq-grid { max-width: 900px; margin: 0 auto; }
.mse-faq-item {
    border: 1px solid #e0eaee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.mse-faq-q {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary, #284967);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.mse-faq-q i { transition: transform 0.25s; color: var(--primary, #2F8094); }
.mse-faq-item.open .mse-faq-q i { transform: rotate(180deg); }
.mse-faq-a {
    display: none;
    padding: 0 20px 16px;
    line-height: 1.7;
    color: #555;
    font-size: 14px;
}
.mse-faq-item.open .mse-faq-a { display: block; }

/* Research */
.mse-research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.mse-research-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0eaee;
    transition: all 0.25s;
}
.mse-research-card:hover {
    border-color: var(--primary, #2F8094);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}
.mse-research-card i {
    font-size: 32px;
    color: var(--primary, #2F8094);
    margin-bottom: 12px;
}
.mse-research-card h3 {
    font-size: 17px;
    color: var(--secondary, #284967);
    margin: 0 0 8px;
}
.mse-research-card p { font-size: 13px; color: #666; margin-bottom: 12px; }
.mse-research-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #2F8094);
}

/* Content silo */
.mse-silo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}
.mse-silo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--brand-light, #F4FAFB);
    border-radius: 8px;
    color: var(--secondary, #284967);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.mse-silo-link:hover {
    background: var(--primary, #2F8094);
    color: #fff;
    text-decoration: none;
}
.mse-related-keywords { margin-top: 36px; }
.mse-related-keywords h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary, #284967);
}

/* Local footer */
.mse-local-footer {
    background: var(--secondary, #284967);
    color: #fff;
    padding: 48px 0 32px;
}
.mse-local-footer h2 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.mse-local-footer p { opacity: 0.9; margin-bottom: 20px; }
.mse-local-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.mse-local-chip {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}
.mse-local-chip:hover {
    background: var(--gold, #C9941A);
    color: #fff;
    text-decoration: none;
}
.mse-local-footer .hk-site-location { color: rgba(255, 255, 255, 0.9); }
.mse-local-footer .hk-site-location h3 { color: #fff; }

/* Sticky mobile CTA */
.mse-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 12px;
    gap: 8px;
}
.mse-sticky-cta.is-visible { display: flex; }
.mse-sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
}
.mse-sticky-call { background: var(--primary, #2F8094); }
.mse-sticky-wa { background: #25D366; }
.mse-sticky-form { background: var(--gold, #C9941A); }

/* Floating call button */
.mse-call-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary, #2F8094);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(47, 128, 148, 0.4);
    z-index: 998;
    text-decoration: none;
    transition: transform 0.2s;
}
.mse-call-float:hover {
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}
.master-seo-page .whatsapp-float { bottom: 90px; right: 20px; }

/* Exit popup */
.mse-exit-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.mse-exit-popup.is-open { display: flex; }
.mse-exit-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.mse-exit-modal {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.mse-exit-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.mse-exit-modal h3 {
    color: var(--secondary, #284967);
    margin-bottom: 12px;
}
.mse-exit-form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mse-exit-form input {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Property alert bar */
.mse-alert-bar {
    background: var(--gold, #C9941A);
    padding: 14px 0;
    color: #fff;
}
.mse-alert-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.mse-alert-form span { font-weight: 600; white-space: nowrap; }
.mse-alert-form input[type="tel"] {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    min-width: 180px;
}

/* Area broker spotlight */
.mse-area-spotlight {
    margin-top: 36px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    border-left: 5px solid var(--primary, #2F8094);
}
.mse-area-spotlight-head h2 {
    font-size: 26px;
    color: var(--secondary, #284967);
    margin: 12px 0;
}
.mse-area-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.mse-area-stat {
    background: var(--brand-light, #F4FAFB);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}
.mse-area-stat strong {
    display: block;
    font-size: 18px;
    color: var(--primary, #2F8094);
}
.mse-area-stat span {
    font-size: 12px;
    color: #666;
}
.mse-area-details p { line-height: 1.75; color: #444; }
.mse-area-invest-intro {
    background: var(--brand-light, #F4FAFB);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
    border-left: 4px solid var(--gold, #C9941A);
}
.mse-area-why {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e0eaee;
}

/* Flagship broker page content */
.mse-flagship-section { padding-top: 0; }
.mse-flagship-content .mse-content-block {
    padding: 48px 0;
    border-bottom: 1px solid #e8eef2;
}
.mse-flagship-content .mse-content-block:last-child { border-bottom: none; }
.mse-flagship-section-alt {
    background: var(--brand-light, #F4FAFB);
    margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
}
.mse-flagship-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.mse-flagship-services li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color: #444;
}
.mse-flagship-services .fa-check {
    color: var(--gold, #C9941A);
    margin-top: 3px;
}
.mse-flagship-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 20px;
}
.mse-flagship-prop-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
.mse-flagship-list {
    padding-left: 20px;
    margin: 0;
    line-height: 1.9;
    color: #444;
}
.mse-flagship-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.mse-flagship-tags li {
    background: #fff;
    border: 1px solid #d8e6eb;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--secondary, #284967);
}
.mse-flagship-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.mse-flagship-trust-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--primary, #2F8094);
}
.mse-flagship-trust-card h3 {
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--secondary, #284967);
}
.mse-flagship-trust-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #555;
}
.mse-flagship-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.mse-flagship-office-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.mse-flagship-office-card h3 {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--secondary, #284967);
}
.mse-flagship-office-card p { margin: 0; line-height: 1.65; }
.mse-flagship-contact {
    margin-top: 24px;
    font-size: 16px;
}
.mse-flagship-contact p { margin-bottom: 8px; }
.mse-flagship-contact .fa { color: var(--primary, #2F8094); margin-right: 8px; }
.mse-flagship-cta {
    text-align: center;
    padding-bottom: 24px !important;
}
.mse-flagship-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

/* Enterprise flagship extensions */
.master-seo-flagship-page .mse-hero { min-height: 560px; }
.master-seo-flagship-page .mse-flagship-about,
.master-seo-flagship-page .mse-flagship-why,
.master-seo-flagship-page .mse-flagship-investment { max-width: 920px; margin: 0 auto; }

.mse-flagship-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 28px;
}
.mse-flagship-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--gold, #C9941A);
    transition: transform 0.2s;
}
.mse-flagship-service-card:hover { transform: translateY(-3px); }
.mse-flagship-service-card .fa {
    font-size: 28px;
    color: var(--primary, #2F8094);
    margin-bottom: 12px;
}
.mse-flagship-service-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--secondary, #284967);
}
.mse-flagship-service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.mse-flagship-type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.mse-flagship-type-chip {
    background: var(--brand-light, #F4FAFB);
    border: 1px solid #d0e4ea;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary, #284967);
}

.mse-flagship-area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 28px;
}
.mse-flagship-area-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary, #2F8094);
}
.mse-flagship-area-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
}
.mse-flagship-area-card h3 a {
    color: var(--secondary, #284967);
    text-decoration: none;
}
.mse-flagship-area-card h3 a:hover { color: var(--primary, #2F8094); }
.mse-flagship-area-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 12px;
}
.mse-area-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark, #8B6914);
    text-decoration: none;
}
.mse-area-card-link:hover { text-decoration: underline; }

.mse-flagship-offices--enterprise .mse-flagship-office-card {
    border-top: 4px solid var(--gold, #C9941A);
}
.mse-office-badge {
    display: inline-block;
    background: var(--brand-light, #F4FAFB);
    color: var(--primary, #2F8094);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.mse-office-phone { margin: 12px 0; font-weight: 600; }
.mse-office-phone .fa { color: var(--primary, #2F8094); margin-right: 6px; }

.mse-flagship-internal-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.mse-flagship-internal-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e0eaee;
    border-radius: 8px;
    color: var(--secondary, #284967);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.mse-flagship-internal-link:hover {
    border-color: var(--primary, #2F8094);
    background: var(--brand-light, #F4FAFB);
}
.mse-flagship-internal-link .fa { color: var(--gold, #C9941A); }

.mse-form-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}
.mse-form-tab {
    background: #fff;
    border: 2px solid #d8e6eb;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary, #284967);
    cursor: pointer;
    transition: all 0.2s;
}
.mse-form-tab.active,
.mse-form-tab:hover {
    background: var(--primary, #2F8094);
    border-color: var(--primary, #2F8094);
    color: #fff;
}

.mse-wa-popup {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 999;
    max-width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    border-left: 4px solid #25D366;
}
.mse-wa-popup.is-visible {
    transform: translateX(0);
    opacity: 1;
}
.mse-wa-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}
.mse-wa-popup-inner { text-align: center; }
.mse-wa-popup-inner .fa-whatsapp {
    font-size: 36px;
    color: #25D366;
    margin-bottom: 8px;
}
.mse-wa-popup-inner p {
    font-size: 13px;
    color: #666;
    margin: 8px 0 16px;
}

.master-seo-flagship-page .mse-testimonial .quote {
    font-size: 14px;
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 991px) {
    .mse-hero { min-height: 440px; padding-top: 60px; }
    .mse-hero-btns .hk-btn { flex: 1 1 calc(50% - 6px); text-align: center; justify-content: center; }
    .mse-sticky-cta.is-visible { display: flex; }
    .mse-call-float { bottom: 72px; }
    .master-seo-page .whatsapp-float { bottom: 72px; }
    body.master-seo-page { padding-bottom: 60px; }
}

@media (max-width: 575px) {
    .mse-section { padding: 48px 0; }
    .mse-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .mse-hero-btns .hk-btn { flex: 1 1 100%; }
    .mse-whatsapp-inner { flex-direction: column; }
}
