/* ===== FEATURES PAGE CSS ===== */

/* --- Page Level Setup --- */
#pages-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Below content, above body background */
    pointer-events: none;
    opacity: 0.8;
}
body.light-theme #pages-canvas {
    opacity: 0.6;
}

/* --- Utilities & Specific Helpers --- */
.text-cyan { color: var(--cyan); }
body.light-theme .text-cyan { color: #d4872a; }
.text-green { color: var(--green); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center; }
.mt-4 { margin-top: 1.5rem; }
.pb-huge { padding-bottom: 200px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Hero Feature --- */
.hero-feature {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    z-index: 10;
}
.feat-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.feat-hero-content .s-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}
.feat-hero-content .hero-sub {
    font-size: 1.25rem;
    color: var(--text-2);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* --- Sections & Layout --- */
.feat-section {
    position: relative;
    z-index: 10;
    padding: 120px 0;
    border-top: 1px solid transparent;
}
.feat-section.alt-bg {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
body.light-theme .feat-section.alt-bg {
    background: linear-gradient(180deg, rgba(0,0,0,0.02), transparent);
}
.feat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feat-split.reverse {
    grid-template-columns: 1fr 1fr;
}
.feat-split.reverse .feat-text {
    order: 2;
}
.feat-split.reverse .feat-visual {
    order: 1;
}

/* --- Typography & Text Elements --- */
.feat-num {
    font-family: var(--font-h);
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--cyan-dim);
    margin-bottom: -1rem;
    line-height: 1;
    position: relative;
    z-index: 0;
    user-select: none;
}
body.light-theme .feat-num {
    -webkit-text-stroke: 1.5px rgba(212, 135, 42, 0.3);
}
.feat-num.centered {
    margin: 0 auto -1rem;
}
.feat-text {
    position: relative;
    z-index: 5;
}
.feat-text p {
    color: var(--text-2);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.feat-list {
    margin-top: 2rem;
}
.feat-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: inline-block;
}
.stat-box h4 {
    font-family: var(--font-h);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

/* --- Visual Areas (The Cards) --- */
.feat-visual {
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-watermark.right {
    left: auto;
    right: 0;
    transform: translateY(-50%) translateX(20%);
}

/* --- Feature Specific Animations (CSS Base) --- */

/* 2. Inventory Grid */
#anim-inventory {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 80%;
    height: 80%;
    perspective: 800px;
    transform: rotateX(45deg) rotateZ(45deg);
}
.inv-cell {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: all 0.5s;
}
.inv-cell.active { background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
.inv-cell.sold { background: var(--red); box-shadow: 0 0 15px var(--red); }
.inv-cell.reserved { background: var(--gold); box-shadow: 0 0 15px var(--gold); }
body.light-theme .inv-cell { border: 1px solid rgba(0,0,0,0.1); background: rgba(0,0,0,0.05); }

/* 3. Routing Nodes */
#anim-routing {
    position: relative;
    width: 100%;
    height: 100%;
}
.node-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--bg);
    box-shadow: 0 0 30px rgba(0, 240, 252, 0.4);
    z-index: 5;
}
body.light-theme .node-center {
    background: linear-gradient(135deg, #d4872a, #b06a3a);
    box-shadow: 0 0 30px rgba(212, 135, 42, 0.4);
}
.node-sat {
    position: absolute;
    width: 50px; height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--cyan);
    z-index: 4;
}
body.light-theme .node-sat { color: #d4872a; }
.node-sat.n1 { top: 20%; left: 20%; }
.node-sat.n2 { top: 70%; left: 15%; }
.node-sat.n3 { top: 40%; right: 15%; }
.routing-line {
    position: absolute;
    top: 50%; left: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    transform-origin: 0 50%;
    opacity: 0.5;
    z-index: 3;
}
body.light-theme .routing-line { background: linear-gradient(90deg, #d4872a, transparent); }

/* 4. Visits Radar */
.radar-scan {
    width: 250px; height: 250px;
    border: 2px solid var(--cyan-dim);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px rgba(0,240,252,0.1) inset;
}
body.light-theme .radar-scan { border-color: rgba(212, 135, 42, 0.3); box-shadow: 0 0 40px rgba(212,135,42,0.1) inset; }
.radar-scan::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    background: var(--cyan-dim);
}
.radar-scan::after {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 2px;
    background: var(--cyan-dim);
}
body.light-theme .radar-scan::before, body.light-theme .radar-scan::after { background: rgba(212, 135, 42, 0.3); }
.radar-dot {
    position: absolute;
    width: 12px; height: 12px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    top: 30%; left: 60%;
}
.radar-dot.d2 { top: 60%; left: 30%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.radar-sweep {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 70%, rgba(0,240,252,0.4) 100%);
    animation: sweep 4s linear infinite;
}
body.light-theme .radar-sweep { background: conic-gradient(from 0deg, transparent 70%, rgba(212,135,42,0.4) 100%); }
@keyframes sweep { 100% { transform: rotate(360deg); } }

/* 5. Follow Up Timeline */
#anim-timeline {
    width: 80%; height: 80%;
    position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 2rem 0;
}
.t-line {
    position: absolute;
    left: 24px; top: 2rem; bottom: 2rem;
    width: 2px;
    background: var(--border);
}
.t-point {
    position: relative;
    display: flex; align-items: center; gap: 1.5rem;
    z-index: 2;
}
.t-point i {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--cyan);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--cyan);
    box-shadow: 0 0 15px rgba(0,240,252,0.2);
}
body.light-theme .t-point i { border-color: #d4872a; color: #d4872a; box-shadow: 0 0 15px rgba(212,135,42,0.2); }
.t-point::after {
    content: '';
    flex-grow: 1;
    height: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
}
body.light-theme .t-point::after { background: rgba(0,0,0,0.02); }

/* 6. Analytics Showcase */
.analytics-showcase {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 250px;
    gap: 1rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}
.chart-bars .bar {
    width: 12%;
    background: linear-gradient(0deg, var(--purple-dim), var(--purple));
    border-radius: 4px 4px 0 0;
    height: 0;
    transition: height 1s var(--ease-out);
    position: relative;
}
body.light-theme .chart-bars .bar { background: linear-gradient(0deg, rgba(212, 135, 42, 0.2), #d4872a); }
.chart-bars .bar::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}
.analytics-overlay {
    position: absolute;
    top: 2rem; left: 50%; transform: translateX(-50%);
    background: var(--bg-glass);
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--cyan);
    box-shadow: 0 10px 30px rgba(0,240,252,0.15);
}
body.light-theme .analytics-overlay { border-color: #d4872a; box-shadow: 0 10px 30px rgba(212,135,42,0.15); }

/* 7. Profiles */
#anim-profiles {
    position: relative;
    width: 100%; height: 100%;
}
.p-card {
    position: absolute;
    width: 200px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; gap: 10px;
}
body.light-theme .p-card { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.p-card.c1 { top: 20%; left: 20%; z-index: 3; }
.p-card.c2 { top: 40%; right: 10%; z-index: 2; opacity: 0.7; transform: scale(0.9); }
.p-card .av {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--cyan); color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
body.light-theme .p-card .av { background: #d4872a; }
.p-card .ln { height: 8px; background: var(--border); border-radius: 4px; width: 100%; }
.p-card .ln.short { width: 60%; }

/* 8. Sync Box */
#anim-sync {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}
.sync-box {
    width: 100px; height: 100px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--text-2);
}
.sync-arrows {
    font-size: 2rem;
    color: var(--cyan);
}
body.light-theme .sync-arrows { color: #d4872a; }

/* 9. Eco Orbit */
#anim-eco {
    position: relative;
    width: 100%; max-width: 600px;
    height: 400px;
    margin: 4rem auto 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; box-shadow: none; overflow: visible;
}
.eco-center {
    width: 80px; height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0,240,252,0.3);
}
body.light-theme .eco-center { border-color: #d4872a; box-shadow: 0 0 30px rgba(212,135,42,0.3); }
.eco-orbit {
    position: absolute;
    top: 50%; left: 50%;
    border: 1px dashed var(--border);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.eco-orbit.o1 { width: 180px; height: 180px; animation: spin 10s linear infinite; }
.eco-orbit.o2 { width: 280px; height: 280px; animation: spin 15s linear infinite reverse; }
.eco-orbit.o3 { width: 380px; height: 380px; animation: spin 20s linear infinite; }
.eco-orbit.o4 { width: 480px; height: 480px; animation: spin 25s linear infinite reverse; }

.eco-item {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 30px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 0.8rem;
}
body.light-theme .eco-item { color: #d4872a; }

@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* =========================================
   ABOUT PAGE SPECIFIC CSS
   ========================================= */

/* --- Mission Visual --- */
.mission-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}
.m-card {
    background: var(--bg-elevated);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
body.light-theme .m-card { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.m-card.error { color: var(--red); border-color: rgba(239, 68, 68, 0.4); }
.m-card.success { color: var(--green); border-color: rgba(16, 185, 129, 0.4); }
.m-arrow {
    font-size: 2rem;
    color: var(--cyan);
}
body.light-theme .m-arrow { color: #d4872a; }

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 3rem;
}
.value-item {
    text-align: center;
}
.value-item .v-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0,240,252,0.2);
}
body.light-theme .value-item .v-icon { border-color: #d4872a; color: #d4872a; box-shadow: 0 0 20px rgba(212,135,42,0.2); }
.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-h);
}
.value-item p {
    color: var(--text-2);
    font-size: 1rem;
}

/* --- Team Visual --- */
.team-visual {
    position: relative;
    width: 300px; height: 300px;
}
.t-node {
    position: absolute;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.center-node {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg);
    font-size: 2rem;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
body.light-theme .center-node { background: linear-gradient(135deg, #d4872a, #b06a3a); }
.sat-node {
    width: 60px; height: 60px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--cyan);
    z-index: 4;
}
body.light-theme .sat-node { color: #d4872a; }
.sat-node.s1 { top: 0; left: 50%; transform: translateX(-50%); }
.sat-node.s2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.sat-node.s3 { top: 50%; left: 0; transform: translateY(-50%); }
.sat-node.s4 { top: 50%; right: 0; transform: translateY(-50%); }

/* --- Global Reach --- */
.reach-map {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
}
.world-map {
    position: relative;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.map-icon {
    font-size: 20rem;
    color: var(--cyan-dim);
    opacity: 0.3;
}
body.light-theme .map-icon { color: rgba(212, 135, 42, 0.2); }
.map-pin {
    position: absolute;
    width: 12px; height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    z-index: 5;
}
body.light-theme .map-pin { background: #d4872a; }
.pin-ring {
    position: absolute;
    top: -14px; left: -14px;
    width: 40px; height: 40px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
body.light-theme .pin-ring { border-color: #d4872a; }
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.map-pin.p1 { top: 30%; left: 25%; }
.map-pin.p2 { top: 40%; left: 50%; }
.map-pin.p3 { top: 60%; left: 75%; }

.reach-stats {
    position: absolute;
    bottom: 2rem; right: 2rem;
    display: flex;
    gap: 2rem;
    background: var(--bg-glass);
    padding: 1rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.r-stat h3 {
    font-size: 2rem;
    font-family: var(--font-h);
}
.r-stat p {
    font-size: 0.9rem;
    color: var(--text-2);
}

/* =========================================
   CONTACT PAGE SPECIFIC CSS
   ========================================= */

/* --- Contact Form Section --- */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.c-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
body.light-theme .c-method { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.cm-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
body.light-theme .cm-icon { background: linear-gradient(135deg, #d4872a, #b06a3a); }
.c-method h4 {
    font-family: var(--font-h);
    margin-bottom: 2px;
}
.c-method p {
    margin: 0 !important;
    font-size: 0.95rem !important;
}

/* --- Form Styles --- */
.contact-form-card {
    padding: 2.5rem;
    border-radius: 20px;
}
.form-row {
    display: flex;
    gap: 1.5rem;
}
.form-row .input-group {
    flex: 1;
}
.input-group {
    margin-bottom: 1.2rem;
}
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 500;
}
.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}
body.light-theme .input-group input,
body.light-theme .input-group select,
body.light-theme .input-group textarea {
    background: rgba(0,0,0,0.03);
    color: #1a1612;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0,240,252,0.15);
    background: rgba(0,240,252,0.02);
}
body.light-theme .input-group input:focus,
body.light-theme .input-group select:focus,
body.light-theme .input-group textarea:focus {
    border-color: #d4872a;
    box-shadow: 0 0 15px rgba(212,135,42,0.15);
    background: rgba(212,135,42,0.02);
}
.input-group select option {
    background: var(--bg-elevated);
    color: var(--text);
}
body.light-theme .input-group select option {
    background: #eae2d6;
    color: #1a1612;
}
.w-100 { width: 100%; }

/* --- Offices Grid --- */
.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    margin-top: 2rem;
}
.office-card {
    text-align: center;
}
.office-img {
    width: 100%; height: 160px;
    background: var(--bg-elevated);
    border-radius: 16px;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
/* Placeholder background patterns for offices */
.office-img::before {
    content: '';
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-size: cover; background-position: center;
    opacity: 0.5; filter: grayscale(100%) contrast(1.2);
    transition: all 0.5s;
}
.office-card:hover .office-img::before { opacity: 0.8; filter: grayscale(0%); transform: scale(1.05); }
.o-ny::before { background-image: radial-gradient(var(--cyan) 1px, transparent 1px); background-size: 10px 10px; }
.o-ldn::before { background-image: linear-gradient(45deg, var(--purple) 25%, transparent 25%); background-size: 20px 20px; }
.o-dxb::before { background-image: radial-gradient(var(--gold) 2px, transparent 2px); background-size: 15px 15px; }

body.light-theme .o-ny::before { background-image: radial-gradient(#d4872a 1px, transparent 1px); }
body.light-theme .o-ldn::before { background-image: linear-gradient(45deg, #b06a3a 25%, transparent 25%); }
body.light-theme .o-dxb::before { background-image: radial-gradient(#ff7700 2px, transparent 2px); }

.office-info h3 {
    font-size: 1.4rem;
    font-family: var(--font-h);
    margin-bottom: 0.5rem;
}
.office-info p {
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Support Rings --- */
.support-rings {
    position: relative;
    width: 250px; height: 250px;
    display: flex; align-items: center; justify-content: center;
}
.s-center {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 50%;
    color: var(--bg);
    font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(0, 240, 252, 0.4);
}
body.light-theme .s-center { background: linear-gradient(135deg, #d4872a, #b06a3a); box-shadow: 0 0 30px rgba(212,135,42,0.4); }
.s-ring {
    position: absolute;
    border: 1px solid var(--cyan-dim);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
body.light-theme .s-ring { border-color: rgba(212, 135, 42, 0.2); }
.s-ring.r1 { width: 120px; height: 120px; animation: pulseRing 2s linear infinite; }
.s-ring.r2 { width: 170px; height: 170px; animation: pulseRing 2s linear infinite 0.5s; }
.s-ring.r3 { width: 220px; height: 220px; animation: pulseRing 2s linear infinite 1s; }

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* =========================================
   PRICING PAGE SPECIFIC CSS
   ========================================= */

/* --- 2D Minimalist Layout (With Floating Orbs) --- */
.pricing-stage-sec.relative {
    position: relative;
    padding-bottom: 6rem;
    padding-top: 150px;
    overflow: hidden;
}

/* Floating Orbs for Decoration */
.p-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: floatOrb 20s infinite alternate ease-in-out;
}
.orb-1 { width: 400px; height: 400px; background: rgba(0, 240, 252, 0.4); top: -100px; left: -100px; animation-duration: 25s; }
.orb-2 { width: 500px; height: 500px; background: rgba(138, 43, 226, 0.3); bottom: -150px; right: -150px; animation-duration: 30s; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: rgba(255, 0, 150, 0.2); top: 30%; left: 40%; animation-duration: 22s; animation-delay: -10s; }

body.light-theme .orb-1 { background: rgba(212, 135, 42, 0.4); }
body.light-theme .orb-2 { background: rgba(176, 106, 58, 0.3); }
body.light-theme .orb-3 { background: rgba(255, 180, 50, 0.2); }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
    100% { transform: translate(20px, 60px) scale(1.05); }
}

.pricing-grid-2d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.p-card-2d {
    background: rgba(15, 20, 30, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}
body.light-theme .p-card-2d {
    background: rgba(255, 255, 255, 0.35); /* Translucent glass instead of opaque */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.p-card-2d:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 252, 0.4);
    box-shadow: 0 20px 50px rgba(0, 240, 252, 0.15);
}
body.light-theme .p-card-2d:hover {
    border-color: rgba(212, 135, 42, 0.4);
    box-shadow: 0 20px 50px rgba(212, 135, 42, 0.15);
}

.p-card-2d.featured {
    border-color: rgba(138, 43, 226, 0.4);
    background: rgba(25, 20, 45, 0.7);
    transform: scale(1.05);
}
body.light-theme .p-card-2d.featured {
    border-color: rgba(176, 106, 58, 0.5);
    background: rgba(255, 255, 255, 0.45); /* Highly translucent for featured in light mode */
}
.p-card-2d.featured:hover { transform: translateY(-8px) scale(1.05); }

.popular-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    white-space: nowrap;
}
body.light-theme .popular-badge { background: linear-gradient(90deg, #d4872a, #b06a3a); }

/* Header */
.p2-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
body.light-theme .p2-header { border-bottom-color: rgba(0, 0, 0, 0.1); }

.plan-name {
    font-size: 1.8rem;
    font-family: var(--font-h);
    color: var(--text);
    margin-bottom: 0.5rem;
}
.price-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-h);
    letter-spacing: -1px;
}
.price-modern .currency { font-size: 1.5rem; margin-top: 8px; margin-right: 5px; color: var(--cyan); }
body.light-theme .price-modern .currency { color: #d4872a; }
.price-modern .period { font-size: 1.2rem; align-self: flex-end; margin-bottom: 8px; margin-left: 5px; color: var(--text-2); font-weight: 500; }
.gst-tag { font-size: 0.8rem; color: var(--text-2); font-weight: 600; display: block; margin-top: 5px; letter-spacing: 1px; }
.plan-desc {
    color: var(--text-2);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Body / Features List */
.p2-body {
    flex: 1;
    margin-bottom: 2rem;
}
.p2-features {
    list-style: none;
    padding: 0; margin: 0;
}
.p2-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.4;
}
.p2-features li i {
    color: var(--cyan);
    font-size: 1rem;
    margin-top: 3px;
}
body.light-theme .p2-features li i { color: #d4872a; }
.p2-features li strong {
    color: var(--text);
    font-weight: 600;
}

.p2-footer {
    margin-top: auto;
}

/* --- Responsive Layout Adjustments --- */
@media(max-width: 1200px) {
    .pricing-grid-2d { grid-template-columns: repeat(2, 1fr); }
    .p-card-2d { margin-bottom: 2rem; }
    .p-card-2d.featured { transform: scale(1); }
    .p-card-2d.featured:hover { transform: translateY(-8px) scale(1); }
}
@media(max-width: 900px) {
    .feat-split, .feat-split.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .feat-split.reverse .feat-text { order: 1; }
    .feat-split.reverse .feat-visual { order: 2; }
    .hero-feature { text-align: center; }
    .pricing-grid-2d { grid-template-columns: 1fr; }
    .values-grid, .office-grid { grid-template-columns: 1fr; padding: 1.5rem; }
    .reach-stats { position: relative; bottom: 0; right: 0; margin-top: 2rem; justify-content: center; flex-direction: column; text-align: center; }
    .form-row { flex-direction: column; gap: 0; }
}
