/* ═══════════════════════════════════════════════════════════
   ABOUT ASTROLOGER — Original Light Theme + Enhanced Animations
   Fonts: Cinzel (display) + Lato (body)
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── SECTION ───────────────────────────────────────────────── */
.ak-section {
    --accent:       #ff6a00;
    --accent2:      #ffb347;
    --accent-gold:  #ffd060;
    --glass-bg:     rgba(255,255,255,0.75);
    --glass-border: rgba(255,165,0,0.15);
    --text-primary: #111;
    --text-muted:   #555;
    --green:        #27ae60;

    position: relative;
    width: 100%;
    background: linear-gradient(120deg, #fffaf5, #f3f6ff);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    color: var(--text-primary);
}

/* ── ANIMATED BG MESH ──────────────────────────────────────── */
.ak-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,140,0,.18), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,215,0,.18), transparent 40%),
        radial-gradient(circle at 55% 10%, rgba(255,180,80,.10), transparent 35%);
    animation: bgMesh 14s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
@keyframes bgMesh {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, -30px) scale(1.05); }
}

/* ── FLOATING ORBS ─────────────────────────────────────────── */
.ak-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 16s ease-in-out infinite alternate;
}
.ak-orb--1 {
    width: clamp(200px, 28vw, 380px);
    height: clamp(200px, 28vw, 380px);
    background: radial-gradient(circle, rgba(255,140,0,.14), transparent 70%);
    top: -12%; left: -8%;
    animation-duration: 18s;
}
.ak-orb--2 {
    width: clamp(150px, 20vw, 280px);
    height: clamp(150px, 20vw, 280px);
    background: radial-gradient(circle, rgba(255,210,60,.12), transparent 70%);
    bottom: -8%; right: -6%;
    animation-duration: 13s; animation-delay: -5s;
}
.ak-orb--3 {
    width: clamp(100px, 14vw, 200px);
    height: clamp(100px, 14vw, 200px);
    background: radial-gradient(circle, rgba(255,100,0,.08), transparent 70%);
    top: 45%; left: 48%;
    animation-duration: 20s; animation-delay: -9s;
}
@keyframes orbFloat {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(25px,-25px) scale(1.07); }
}

/* ── MANDALA DECORATION ────────────────────────────────────── */
.ak-mandala {
    position: absolute;
    top: 50%; left: 50%;
    width: clamp(280px, 45vw, 560px);
    height: clamp(280px, 45vw, 560px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: mandalaSpin 70s linear infinite;
    opacity: .35;
}
@keyframes mandalaSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── INNER WRAPPER ─────────────────────────────────────────── */
.ak-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── TOP STRIP ─────────────────────────────────────────────── */
.ak-topstrip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 4vw, 50px);
    animation: fadeDown .8s ease both;
}

.ak-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,80,60,.08);
    border: 1px solid rgba(255,80,60,.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #e04a20;
}
.ak-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff4a2a;
    flex-shrink: 0;
    animation: livePulse 1.2s ease-in-out infinite;
}
@keyframes livePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,74,42,.5); }
    50%      { box-shadow: 0 0 0 6px rgba(255,74,42,0); }
}

.ak-timer-pill {
    background: rgba(255,140,0,.1);
    border: 1px solid rgba(255,140,0,.3);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #e04a00;
}
.ak-timer-pill strong { color: #c03a00; font-size: 15px; }

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MAIN GRID ─────────────────────────────────────────────── */
.ak-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(20px, 4vw, 50px);
    align-items: center;
}

/* ── GLASS CARD ────────────────────────────────────────────── */
.ak-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        inset 0 0 20px rgba(255,255,255,.4);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ak-glass:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(255,140,0,.15),
        inset 0 0 20px rgba(255,255,255,.5);
}

/* ── LEFT CARD ─────────────────────────────────────────────── */
.ak-left-card { height: 100%; }

.ak-badge-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 16px;
}
.ak-badge {
    background: rgba(255,140,0,.12);
    border: 1px solid rgba(255,140,0,.3);
    color: #c04a00;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px; font-weight: 700;
    letter-spacing: .04em;
}
.ak-badge--green {
    background: rgba(39,174,96,.1);
    border-color: rgba(39,174,96,.3);
    color: #1a7a45;
}

.ak-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 2.8vw, 40px);
    line-height: 1.2;
    color: #111;
    margin-bottom: 14px;
}

.ak-gradient-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(100deg, #ff6a00, #ffb347, #ff6a00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}
.ak-gradient-text::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #ff6a00, gold);
    border-radius: 10px;
}
@keyframes gradientShift { to { background-position: 200% center; } }

.ak-subtext {
    color: var(--text-muted);
    font-size: clamp(13px, 1.4vw, 17px);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ak-trust-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 26px;
}
.ak-trust-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: clamp(13px, 1.3vw, 15px);
    color: #333;
    transition: color .25s, transform .25s;
}
.ak-trust-list li:hover { color: var(--accent); transform: translateX(5px); }
.ak-check {
    color: var(--green); font-weight: 700; font-size: 13px;
    flex-shrink: 0; width: 20px; height: 20px;
    background: rgba(39,174,96,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ── INLINE CTA ────────────────────────────────────────────── */
.ak-inline-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.ak-call-btn {
    position: relative;
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(13px, 1.3vw, 15px);
    padding: 13px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255,140,0,.4), 0 0 10px rgba(255,140,0,.3);
    transition: transform .25s, box-shadow .25s;
    overflow: hidden; white-space: nowrap;
}
.ak-call-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
    opacity: 0; transition: opacity .25s;
}
.ak-call-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px rgba(255,140,0,.5); }
.ak-call-btn:hover::before { opacity: 1; }

.ak-call-ring {
    position: absolute; inset: -4px;
    border-radius: 16px;
    border: 2px solid rgba(255,140,0,.5);
    animation: ringPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes ringPulse {
    0%   { opacity: .8; transform: scale(1); }
    100% { opacity: 0;  transform: scale(1.18); }
}

.ak-read-btn {
    display: inline-flex; align-items: center;
    color: var(--accent);
    text-decoration: none; font-weight: 600;
    font-size: clamp(13px, 1.3vw, 15px);
    padding: 13px 18px;
    border: 1px solid rgba(255,140,0,.35);
    border-radius: 12px;
    background: rgba(255,140,0,.07);
    transition: background .25s, border-color .25s, transform .25s;
    white-space: nowrap;
}
.ak-read-btn:hover {
    background: rgba(255,140,0,.15);
    border-color: rgba(255,140,0,.6);
    transform: translateY(-2px);
}

/* ── CENTER COLUMN ─────────────────────────────────────────── */
.ak-col--center {
    display: flex; justify-content: center; align-items: center;
}
.ak-center-wrap {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding: 20px 0;
}

.ak-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,140,0,.3);
    animation: spinRing 10s linear infinite;
    pointer-events: none;
}
.ak-ring--1 { width: 240px; height: 240px; animation-duration: 12s; border-style: dashed; }
.ak-ring--2 { width: 200px; height: 200px; animation-duration: 8s; animation-direction: reverse; border-color: rgba(255,180,0,.2); }
.ak-ring--3 { width: 170px; height: 170px; animation-duration: 20s; border-style: dotted; border-color: rgba(255,120,0,.18); }
@keyframes spinRing { to { transform: rotate(360deg); } }

.ak-img-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,0,.3), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
@keyframes glowPulse {
    0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
    50%      { opacity: 1;  transform: translate(-50%,-50%) scale(1.25); }
}

.ak-img-frame {
    position: relative; z-index: 1;
    animation: floatImg 4s ease-in-out infinite;
}
.ak-img-frame img {
    width: clamp(150px, 18vw, 220px);
    height: clamp(150px, 18vw, 220px);
    border-radius: 50%;
    object-fit: cover; object-position: center;
    display: block;
    border: 3px solid #ff6a00;
    box-shadow:
        0 0 30px rgba(255,140,0,.6),
        0 0 60px rgba(255,165,0,.3);
}
@keyframes floatImg {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

.ak-nameplate {
    position: relative; z-index: 2;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(255,140,0,.25);
    border-radius: 14px; padding: 10px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(255,140,0,.1);
}
.ak-nameplate-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(12px, 1.3vw, 15px);
    color: #ff6a00; font-weight: 700; white-space: nowrap;
}
.ak-nameplate-sub {
    font-size: 11px; color: #888; margin-top: 2px;
    letter-spacing: .06em; text-transform: uppercase;
}

/* ── RIGHT CARD ────────────────────────────────────────────── */
.ak-right-card { height: 100%; }

.ak-card-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(16px, 1.8vw, 22px);
    color: #111; margin-bottom: 10px;
}
.ak-card-intro {
    color: var(--text-muted);
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 1.65; margin-bottom: 18px;
}

.ak-services-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 18px;
}
.ak-service-item {
    display: flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(255,165,0,.15);
    border-radius: 12px; padding: 10px 12px;
    font-size: clamp(11px, 1.1vw, 13px); color: #444;
    transition: background .25s, border-color .25s, color .25s, transform .25s;
    cursor: default;
}
.ak-service-item:hover {
    background: rgba(255,140,0,.08);
    border-color: rgba(255,140,0,.35);
    color: #111;
    transform: translateY(-4px) scale(1.02);
}
.ak-service-icon {
    font-size: 16px; flex-shrink: 0;
    width: 30px; height: 30px;
    background: rgba(255,140,0,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.ak-trust-chips {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.ak-trust-chips span {
    background: rgba(255,140,0,.1);
    border: 1px solid rgba(255,140,0,.22);
    color: #c04a00; font-size: 12px;
    padding: 5px 12px; border-radius: 50px; font-weight: 600;
}

.ak-urgency-text {
    font-size: 13px; color: #e63900;
    font-weight: 700; letter-spacing: .02em;
    animation: urgencyBlink 2.5s ease-in-out infinite;
}
@keyframes urgencyBlink {
    0%,100% { opacity: 1; }
    50%      { opacity: .6; }
}

/* ── REVEAL ON SCROLL ──────────────────────────────────────── */
.ak-reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}
.ak-reveal.ak-visible {
    opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .ak-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .ak-col--center { grid-column: 1 / -1; order: -1; }
    .ak-ring--1 { width: 210px; height: 210px; }
    .ak-ring--2 { width: 175px; height: 175px; }
    .ak-ring--3 { width: 148px; height: 148px; }
}
@media (max-width: 768px) {
    .ak-grid { grid-template-columns: 1fr; }
    .ak-col--center { grid-column: auto; order: 0; }
    .ak-section { padding: clamp(40px,6vw,60px) clamp(14px,4vw,28px); }
    .ak-services-grid { grid-template-columns: 1fr 1fr; }
    .ak-heading { font-size: clamp(20px,5vw,30px); }
}
@media (max-width: 480px) {
    .ak-services-grid { grid-template-columns: 1fr; }
    .ak-inline-cta { flex-direction: column; }
    .ak-call-btn, .ak-read-btn { justify-content: center; text-align: center; }
    .ak-ring--1 { width: 180px; height: 180px; }
    .ak-ring--2 { width: 150px; height: 150px; }
    .ak-ring--3 { width: 125px; height: 125px; }
}
.ak-section {
    position: relative;
    overflow: hidden;
}

/* Fix canvas behavior */
#ak-stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Prevent layout expansion from decorations */
.ak-mandala,
.ak-orb {
    pointer-events: none;
    max-width: 100%;
}