
/*
Theme Name: Eqtiking 2.0
Theme URI: https://eqtiking.in/
Author: Eqtiking
Description: Lightweight custom child-theme style foundation for the Eqtiking 2.0 financial services homepage.
Version: 1.0.0
Text Domain: eqtiking
*/

/* =========================
   Design System
========================= */
:root {
    --eq-primary: #063b73;
    --eq-primary-dark: #042b53;
    --eq-green: #168c57;
    --eq-orange: #ef6c00;
    --eq-text: #10243e;
    --eq-muted: #607086;
    --eq-light: #f5f9fc;
    --eq-border: #dce7ef;
    --eq-white: #ffffff;
    --eq-shadow: 0 12px 35px rgba(6, 59, 115, 0.08);
    --eq-radius: 14px;
    --eq-container: 1200px;
}

/* =========================
   Base
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--eq-text);
    background: #fff;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.eq-container {
    width: min(var(--eq-container), 92%);
    margin-inline: auto;
}

.eq-section {
    padding: 72px 0;
}

.eq-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.eq-section-heading h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.eq-section-heading p {
    margin: 0;
    color: var(--eq-muted);
    font-size: 17px;
}

/* =========================
   Buttons
========================= */
.eq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 9px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.eq-btn:hover {
    transform: translateY(-1px);
}

.eq-btn-primary {
    background: var(--eq-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(6, 59, 115, .18);
}

.eq-btn-green {
    background: var(--eq-green);
    color: #fff;
}

.eq-btn-orange {
    background: var(--eq-orange);
    color: #fff;
}

.eq-btn-outline {
    background: #fff;
    border-color: var(--eq-primary);
    color: var(--eq-primary);
}

/* =========================
   Header
========================= */
.eq-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--eq-border);
}

.eq-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eq-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.eq-brand strong {
    font-size: 28px;
    letter-spacing: .5px;
    color: var(--eq-primary);
}

.eq-brand span {
    font-size: 11px;
    color: var(--eq-muted);
    margin-top: 4px;
}

.eq-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.eq-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.eq-header-actions {
    display: flex;
    gap: 8px;
}

/* =========================
   Hero
========================= */
.eq-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(245,251,255,.98) 0%, rgba(245,251,255,.90) 44%, rgba(245,251,255,.18) 100%),
        url("../images/hero-bg.png") center/cover no-repeat;
}

.eq-hero-inner {
    min-height: 570px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
}

.eq-eyebrow {
    display: inline-block;
    color: var(--eq-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .7px;
}

.eq-hero h1 {
    margin: 14px 0;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.eq-hero h1 .green {
    color: var(--eq-green);
}

.eq-hero h1 .orange {
    color: var(--eq-orange);
}

.eq-hero-copy {
    max-width: 650px;
    font-size: 20px;
    color: var(--eq-text);
}

.eq-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 22px 0;
    font-size: 13px;
    font-weight: 700;
}

.eq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eq-hero-note {
    display: block;
    margin-top: 14px;
    color: var(--eq-muted);
    font-size: 12px;
}

.eq-hero-visual {
    min-height: 520px;
}

/* =========================
   Trust Bar
========================= */
.eq-trust {
    background: #fff;
    border-bottom: 1px solid var(--eq-border);
}

.eq-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.eq-trust-item {
    padding: 18px 16px;
    border-right: 1px solid var(--eq-border);
}

.eq-trust-item:last-child {
    border-right: 0;
}

.eq-trust-item strong {
    display: block;
    font-size: 14px;
}

.eq-trust-item span {
    display: block;
    margin-top: 3px;
    color: var(--eq-muted);
    font-size: 12px;
}

/* =========================
   Services
========================= */
.eq-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.eq-service-card {
    min-height: 360px;
    padding: 30px;
    border: 1px solid var(--eq-border);
    border-radius: var(--eq-radius);
    box-shadow: var(--eq-shadow);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.eq-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.84);
}

.eq-service-card > * {
    position: relative;
}

.eq-service-card.invest {
    background-image: url("../images/invest-bg.png");
}

.eq-service-card.protect {
    background-image: url("../images/protect-bg.png");
}

.eq-service-card.plan {
    background-image: url("../images/plan-bg.png");
}

.eq-service-card h3 {
    margin: 0 0 5px;
    font-size: 30px;
}

.eq-service-card p {
    margin: 0 0 20px;
    color: var(--eq-muted);
    font-weight: 700;
}

.eq-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.eq-service-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(16,36,62,.10);
    font-size: 15px;
}

.eq-service-card li::after {
    content: "→";
    float: right;
}

/* =========================
   Financial Health
========================= */
.eq-health {
    background: linear-gradient(120deg, #eef7ff, #f7fbff);
}

.eq-health-inner {
    display: grid;
    grid-template-columns: 160px 1fr 280px;
    gap: 30px;
    align-items: center;
}

.eq-health h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
}

.eq-health p {
    color: var(--eq-muted);
}

.eq-health-side {
    padding: 28px;
    border-radius: var(--eq-radius);
    background: #fff;
    box-shadow: var(--eq-shadow);
}

/* =========================
   Why Eqtiking
========================= */
.eq-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.eq-feature {
    padding: 20px;
    text-align: center;
}

.eq-feature h3 {
    margin: 8px 0 5px;
    font-size: 18px;
}

.eq-feature p {
    margin: 0;
    color: var(--eq-muted);
    font-size: 14px;
}

/* =========================
   Calculators
========================= */
.eq-calculator-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.eq-calculator {
    padding: 20px 14px;
    border: 1px solid var(--eq-border);
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(6,59,115,.04);
}

.eq-calculator strong {
    display: block;
    font-size: 14px;
}

.eq-calculator span {
    display: block;
    margin-top: 8px;
    color: var(--eq-primary);
    font-size: 20px;
}

/* =========================
   Portfolio
========================= */
.eq-portfolio {
    background:
        linear-gradient(90deg, rgba(238,247,255,.95), rgba(238,247,255,.80)),
        url("../images/portfolio-bg.png") center/cover no-repeat;
}

.eq-portfolio-inner {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.eq-portfolio h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 46px);
}

/* =========================
   Insights
========================= */
.eq-insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.eq-post {
    overflow: hidden;
    border: 1px solid var(--eq-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(6,59,115,.05);
}

.eq-post-thumb {
    min-height: 145px;
    background: url("../images/insights-bg.png") center/cover no-repeat;
}

.eq-post-body {
    padding: 16px;
}

.eq-post-body small {
    color: var(--eq-muted);
}

.eq-post-body h3 {
    margin: 7px 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

/* =========================
   Lead Form
========================= */
.eq-lead {
    background: #eef7ff;
}

.eq-lead-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.eq-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 26px;
    border-radius: var(--eq-radius);
    background: #fff;
    box-shadow: var(--eq-shadow);
}

.eq-form .full {
    grid-column: 1 / -1;
}

.eq-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
}

.eq-form input,
.eq-form select,
.eq-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--eq-border);
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
}

/* =========================
   Final CTA
========================= */
.eq-final-cta {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6,59,115,.92), rgba(6,59,115,.78)),
        url("../images/cta-bg.png") center/cover no-repeat;
}

.eq-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eq-final-cta h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
}

/* =========================
   Footer
========================= */
.eq-footer {
    background: #fff;
    border-top: 1px solid var(--eq-border);
}

.eq-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 35px;
    padding: 50px 0 30px;
}

.eq-footer h4 {
    margin: 0 0 12px;
}

.eq-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eq-footer li {
    margin: 7px 0;
    color: var(--eq-muted);
    font-size: 14px;
}

.eq-footer a {
    text-decoration: none;
}

.eq-disclaimer {
    border-top: 1px solid var(--eq-border);
    padding: 16px 0;
    color: var(--eq-muted);
    font-size: 11px;
}
